summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorThiago Farina <tfarina@chromium.org>2011-09-11 22:29:38 (GMT)
committerThiago Farina <tfarina@chromium.org>2011-09-11 22:29:38 (GMT)
commitb39616b9211f035e29aa00b28ffba5ee4278ebc1 (patch)
treeffc63e87e3babbfb951db33120f57bedb3da3f5b /configure.py
parentf8c98ed3da50337b9d671ea5ef3b297030ca7973 (diff)
downloadNinja-b39616b9211f035e29aa00b28ffba5ee4278ebc1.zip
Ninja-b39616b9211f035e29aa00b28ffba5ee4278ebc1.tar.gz
Ninja-b39616b9211f035e29aa00b28ffba5ee4278ebc1.tar.bz2
Split ninja_test.cc into state_test.cc and disk_interface_test.cc
Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/configure.py b/configure.py
index 6d21e6b..846fe35 100755
--- a/configure.py
+++ b/configure.py
@@ -172,9 +172,17 @@ else:
test_libs = libs + ['-lgtest_main', '-lgtest']
objs = []
-for name in ['build_test', 'build_log_test', 'disk_interface_test',
- 'eval_env_test', 'graph_test', 'ninja_test', 'parsers_test',
- 'subprocess_test', 'util_test', 'clean_test', 'test']:
+for name in ['build_log_test',
+ 'build_test',
+ 'clean_test',
+ 'disk_interface_test',
+ 'eval_env_test',
+ 'graph_test',
+ 'parsers_test',
+ 'state_test',
+ 'subprocess_test',
+ 'test',
+ 'util_test']:
objs += cxx(name, variables=[('cflags', test_cflags)])
if platform != 'mingw':