OLD | NEW |
---|---|
1 include_rules = [ | 1 include_rules = [ |
2 "+mojo/public/cpp/bindings", | |
dcheng
2016/09/18 22:09:23
ScreenWakeLockTest.cpp is already using the mojo b
| |
2 "+web/tests", | 3 "+web/tests", |
3 # For RunAllTests.cpp only. | |
4 "+base/bind.h", | |
5 "+base/bind_helpers.h", | |
6 "+base/run_loop.h", | |
7 "+base/test/launcher/unit_test_launcher.h", | |
8 "+base/test/test_suite.h", | |
9 "+base/threading/thread_task_runner_handle.h", | |
10 "+content/test/blink_test_environment.h", | |
11 "+mojo/edk/embedder/embedder.h", | |
12 "+mojo/public/cpp/bindings", | |
13 ] | 4 ] |
5 | |
6 specific_include_rules = { | |
7 'RunAllTests\.cpp': [ | |
8 "+base/bind.h", | |
9 "+base/bind_helpers.h", | |
10 "+base/run_loop.h", | |
11 "+base/test/launcher/unit_test_launcher.h", | |
12 "+base/test/test_suite.h", | |
13 "+base/threading/thread_task_runner_handle.h", | |
14 "+content/test/blink_test_environment.h", | |
15 "+mojo/edk/embedder/embedder.h", | |
16 ], | |
17 } | |
OLD | NEW |