aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google_benchmark/gen_build_yaml.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/google_benchmark/gen_build_yaml.py')
-rwxr-xr-xsrc/google_benchmark/gen_build_yaml.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/google_benchmark/gen_build_yaml.py b/src/google_benchmark/gen_build_yaml.py
index 302e08737a..b39e6f33ef 100755
--- a/src/google_benchmark/gen_build_yaml.py
+++ b/src/google_benchmark/gen_build_yaml.py
@@ -44,10 +44,10 @@ out['libs'] = [{
'language': 'c++',
'secure': 'no',
'defaults': 'google_benchmark',
- 'src': sorted(glob.glob('third_party/google_benchmark/src/*.cc')),
+ 'src': sorted(glob.glob('third_party/benchmark/src/*.cc')),
'headers': sorted(
- glob.glob('third_party/google_benchmark/src/*.h') +
- glob.glob('third_party/google_benchmark/include/benchmark/*.h')),
+ glob.glob('third_party/benchmark/src/*.h') +
+ glob.glob('third_party/benchmark/include/benchmark/*.h')),
}]
print yaml.dump(out)