| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+gin/public", | 2 "+gin/public", |
| 3 "+gin/v8_initializer.h", | 3 "+gin/v8_initializer.h", |
| 4 "+v8/include", | 4 "+v8/include", |
| 5 | 5 |
| 6 # For chromeos build config | 6 # For chromeos build config |
| 7 "+chromeos/dbus", | 7 "+chromeos/dbus", |
| 8 "+device/bluetooth", # BluetoothAdapterFactory::Shutdown. | 8 "+device/bluetooth", # BluetoothAdapterFactory::Shutdown. |
| 9 | 9 |
| 10 # The content_shell is the canonical sample embedder, so it only uses | 10 # The content_shell is the canonical sample embedder, so it only uses |
| 11 # content's public API. | 11 # content's public API. |
| 12 "+content/app/strings/grit", # For generated headers | 12 "+content/app/strings/grit", # For generated headers |
| 13 "+content/public", | 13 "+content/public", |
| 14 | 14 |
| 15 # The content_shell is an embedder so it must work with resource bundles. | 15 # The content_shell is an embedder so it must work with resource bundles. |
| 16 "+ui/base/l10n", | 16 "+ui/base/l10n", |
| 17 "+ui/base/resource", | 17 "+ui/base/resource", |
| 18 | 18 |
| 19 # Shell resources | 19 # Shell resources |
| 20 "+grit/shell_resources.h", | 20 "+grit/shell_resources.h", |
| 21 | 21 |
| 22 # The content_shell for aura must work with the views and aura | 22 # The content_shell for aura must work with the views and aura |
| 23 "+ui/aura", | 23 "+ui/aura", |
| 24 "+ui/views", | 24 "+ui/views", |
| 25 | 25 |
| 26 "+components/crash", | 26 "+components/crash", |
| 27 "+components/devtools_discovery", | 27 "+components/devtools_discovery", |
| 28 "+components/devtools_http_handler", | 28 "+components/devtools_http_handler", |
| 29 "+components/test_runner/layout_dump_flags.h", # POD only. | |
| 30 "+components/url_formatter", | 29 "+components/url_formatter", |
| 31 | 30 |
| 32 # For enabling media related features. | 31 # For enabling media related features. |
| 33 "+media/base/media_switches.h", | 32 "+media/base/media_switches.h", |
| 34 | 33 |
| 35 # For media::RemoveProprietaryMediaTypesAndCodecsForTests. | 34 # For media::RemoveProprietaryMediaTypesAndCodecsForTests. |
| 36 "+media/base/mime_util.h", | 35 "+media/base/mime_util.h", |
| 37 | 36 |
| 38 # For enabling mojo media services. | 37 # For enabling mojo media services. |
| 39 "+media/mojo/services", | 38 "+media/mojo/services", |
| 40 ] | 39 ] |
| 41 | 40 |
| 42 specific_include_rules = { | 41 specific_include_rules = { |
| 43 "shell_views\.cc": [ | 42 "shell_views\.cc": [ |
| 44 "+ui/wm/test" | 43 "+ui/wm/test" |
| 45 ], | 44 ], |
| 46 "content_browser_tests_android\.cc": [ | 45 "content_browser_tests_android\.cc": [ |
| 47 "+media/base" | 46 "+media/base" |
| 48 ], | 47 ], |
| 49 # Test hook. | 48 # Test hook. |
| 50 "shell_mojo_test_utils_android\.cc": [ | 49 "shell_mojo_test_utils_android\.cc": [ |
| 51 "+content/browser/mojo", | 50 "+content/browser/mojo", |
| 52 "+content/common/mojo", | 51 "+content/common/mojo", |
| 53 ], | 52 ], |
| 54 } | 53 } |
| OLD | NEW |