| 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   "+mojo", | 11   "+mojo", | 
|  | 12   "+services", | 
| 12 | 13 | 
| 13   # Tests under chrome/ shouldn't need to access the internals of content/ and | 14   # Tests under chrome/ shouldn't need to access the internals of content/ and | 
| 14   # as such are allowed only content/public. If you find yourself wanting to | 15   # as such are allowed only content/public. If you find yourself wanting to | 
| 15   # write such a test, or a test that depends primarily on content, think about | 16   # write such a test, or a test that depends primarily on content, think about | 
| 16   # whether the test belongs under content/, or should be split up into a test | 17   # whether the test belongs under content/, or should be split up into a test | 
| 17   # within content/ and a test within chrome/. | 18   # within content/ and a test within chrome/. | 
| 18   "+content/public", | 19   "+content/public", | 
| 19 | 20 | 
| 20   "+gin/public", | 21   "+gin/public", | 
| 21   "+grit",  # For generated headers. TODO(thestig): Remove. | 22   "+grit",  # For generated headers. TODO(thestig): Remove. | 
| 22   "+media/base", | 23   "+media/base", | 
| 23   "+mojo/edk/embedder", | 24   "+mojo/edk/embedder", | 
| 24   "+sandbox/win/tests", | 25   "+sandbox/win/tests", | 
| 25   "+third_party/ocmock", | 26   "+third_party/ocmock", | 
| 26   "+win8/test", | 27   "+win8/test", | 
| 27 ] | 28 ] | 
| OLD | NEW | 
|---|