aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-12-05 07:43:17 -0800
committerGravatar GitHub <noreply@github.com>2016-12-05 07:43:17 -0800
commit746578ac9cf2f6eea64baedb65d1983e7123edab (patch)
tree23e6907932553e112b8f380451b148b12fbd7ab7 /src
parent8e9a492ad910ad66751fc1d0015e4ef051b62ddc (diff)
parent7d03df3f4406a7f6c732d9694ec5914d706c1683 (diff)
Merge pull request #8851 from dgquintas/rename_gbench
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)