aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google_benchmark
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-04 15:19:43 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-11-04 15:19:43 -0700
commit56fa2c6b564d5b11139b4e5539277ec753561e0f (patch)
treed50519113bf2077d59a876afab23e83a2ed66d29 /src/google_benchmark
parent503653e27ed882db1e8c134f9daca0bae451d325 (diff)
Order files - things were making sanity sad
Diffstat (limited to 'src/google_benchmark')
-rwxr-xr-xsrc/google_benchmark/gen_build_yaml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google_benchmark/gen_build_yaml.py b/src/google_benchmark/gen_build_yaml.py
index f3b3f46132..bfdbf40db9 100755
--- a/src/google_benchmark/gen_build_yaml.py
+++ b/src/google_benchmark/gen_build_yaml.py
@@ -44,8 +44,8 @@ out['libs'] = [{
'language': 'c++',
'secure': 'no',
'defaults': 'google_benchmark',
- 'src': glob.glob('third_party/google_benchmark/src/*.cc'),
- 'headers': glob.glob('third_party/google_benchmark/src/*.h') + glob.glob('third_party/google_benchmark/include/benchmark/*.h'),
+ 'src': sorted(glob.glob('third_party/google_benchmark/src/*.cc')),
+ 'headers': sorted(glob.glob('third_party/google_benchmark/src/*.h') + glob.glob('third_party/google_benchmark/include/benchmark/*.h')),
}]
print yaml.dump(out)