OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # The test directory can do whatever it wants in chrome. | 2 # The test directory can do whatever it wants in chrome, and may |
| 3 # rely on components. |
3 "+chrome", | 4 "+chrome", |
| 5 "+components", |
4 "+extensions", | 6 "+extensions", |
5 | 7 |
6 # Tests under chrome/ shouldn't need to access the internals of content/ and | 8 # Tests under chrome/ shouldn't need to access the internals of content/ and |
7 # as such are allowed only content/public. If you find yourself wanting to | 9 # as such are allowed only content/public. If you find yourself wanting to |
8 # write such a test, or a test that depends primarily on content, think about | 10 # write such a test, or a test that depends primarily on content, think about |
9 # whether the test belongs under content/, or should be split up into a test | 11 # whether the test belongs under content/, or should be split up into a test |
10 # within content/ and a test within chrome/. | 12 # within content/ and a test within chrome/. |
11 "+content/public", | 13 "+content/public", |
12 | 14 |
13 "+grit", # For generated headers | 15 "+grit", # For generated headers |
14 "+media/audio", | 16 "+media/audio", |
15 "+sandbox/win/src", | 17 "+sandbox/win/src", |
16 "+sandbox/win/tests", | 18 "+sandbox/win/tests", |
17 "+webkit/glue", | 19 "+webkit/glue", |
18 "+webkit/plugins", | 20 "+webkit/plugins", |
19 ] | 21 ] |
OLD | NEW |