aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-11-23 19:34:17 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2016-11-23 19:47:04 -0800
commit7d03df3f4406a7f6c732d9694ec5914d706c1683 (patch)
treeac24a146e0b737f2e15bccb957e622bfdeb26af5 /src
parent6ff81e91c9577a52252460fb029fbbf990cfc7b6 (diff)
Renamed google_benchmark submodule to benchmark
Diffstat (limited to 'src')
-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)