aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-12-06 16:03:18 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2016-12-06 17:44:57 -0800
commitff3112188b1d00c7907465da3b08bc6f7d289631 (patch)
tree83f3dced761a6612b644a47e2de19ccf7bd7480f /src
parent7c9076ab7a58fd7d120d3e0d6a58a3a253535185 (diff)
Renamed google_benchmark submodule to benchmark
Diffstat (limited to 'src')
-rwxr-xr-xsrc/benchmark/gen_build_yaml.py (renamed from src/google_benchmark/gen_build_yaml.py)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/google_benchmark/gen_build_yaml.py b/src/benchmark/gen_build_yaml.py
index 302e08737a..09b76115a8 100755
--- a/src/google_benchmark/gen_build_yaml.py
+++ b/src/benchmark/gen_build_yaml.py
@@ -39,15 +39,15 @@ os.chdir(os.path.dirname(sys.argv[0])+'/../..')
out = {}
out['libs'] = [{
- 'name': 'google_benchmark',
+ 'name': 'benchmark',
'build': 'private',
'language': 'c++',
'secure': 'no',
- 'defaults': 'google_benchmark',
- 'src': sorted(glob.glob('third_party/google_benchmark/src/*.cc')),
+ 'defaults': 'benchmark',
+ '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)