OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # The test directory can do whatever it wants in chrome, and may | 2 # The test directory can do whatever it wants in chrome, and may |
3 # rely on components. | 3 # rely on components. |
4 "+ash", | 4 "+ash", |
5 "+chrome", | 5 "+chrome", |
6 "+chrome/grit", # For generated headers | 6 "+chrome/grit", # For generated headers |
7 "+chromeos", | 7 "+chromeos", |
8 "+components", | 8 "+components", |
9 "+device/bluetooth/dbus", | 9 "+device/bluetooth/dbus", |
10 "+extensions", | 10 "+extensions", |
11 | 11 |
12 # Tests under chrome/ shouldn't need to access the internals of content/ and | 12 # Tests under chrome/ shouldn't need to access the internals of content/ and |
13 # as such are allowed only content/public. If you find yourself wanting to | 13 # as such are allowed only content/public. If you find yourself wanting to |
14 # write such a test, or a test that depends primarily on content, think about | 14 # write such a test, or a test that depends primarily on content, think about |
15 # whether the test belongs under content/, or should be split up into a test | 15 # whether the test belongs under content/, or should be split up into a test |
16 # within content/ and a test within chrome/. | 16 # within content/ and a test within chrome/. |
17 "+content/public", | 17 "+content/public", |
18 | 18 |
19 "+gin/public", | 19 "+gin/public", |
20 "+grit", # For generated headers. TODO(thestig): Remove. | 20 "+grit", # For generated headers. TODO(thestig): Remove. |
21 "+media/base", | 21 "+media/base", |
| 22 "+mojo/edk/embedder", |
22 "+sandbox/win/tests", | 23 "+sandbox/win/tests", |
23 "+third_party/mojo/src/mojo/edk/embedder", | |
24 "+third_party/ocmock", | 24 "+third_party/ocmock", |
25 "+win8/test", | 25 "+win8/test", |
26 ] | 26 ] |
OLD | NEW |