Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+components/url_matcher", | 2 "+components/url_matcher", |
| 3 "+content/public/common", | 3 "+content/public/common", |
| 4 "+crypto", | 4 "+crypto", |
| 5 "+testing", | 5 "+testing", |
| 6 "+ui", | 6 "+ui", |
| 7 | 7 |
| 8 # Temporarily allowed includes as part of the app shell/extensions refactor. | 8 # Temporarily allowed includes as part of the app shell/extensions refactor. |
| 9 # | 9 # |
| 10 # NOTE: Please do not add includes without talking to the app shell team; | 10 # NOTE: Please do not add includes without talking to the app shell team; |
| 11 # see OWNERS for this directory. | 11 # see OWNERS for this directory. |
| 12 # | 12 # |
| 13 # TODO(jamescook): Remove these. http://crbug.com/162530 | 13 # TODO(jamescook): Remove these. http://crbug.com/162530 |
| 14 "!chrome/browser/chrome_notification_types.h", | 14 "!chrome/browser/chrome_notification_types.h", |
| 15 "!chrome/browser/extensions/api/content_settings/content_settings_store.h", | |
| 16 "!chrome/browser/extensions/api/runtime/runtime_api.h", | |
| 17 "!chrome/browser/renderer_host/chrome_render_message_filter.h", | |
| 18 "!chrome/common/extensions/features/feature_channel.h", | 15 "!chrome/common/extensions/features/feature_channel.h", |
| 19 "!chrome/common/extensions/api/generated_schemas.h", | |
|
James Cook
2014/04/03 17:52:58
Oh this makes me so happy.
| |
| 20 "!grit/chromium_strings.h", | 16 "!grit/chromium_strings.h", |
| 21 "!grit/common_resources.h", | 17 "!grit/common_resources.h", |
| 22 "!grit/extensions_api_resources.h", | 18 "!grit/extensions_api_resources.h", |
| 23 "!grit/generated_resources.h", | 19 "!grit/generated_resources.h", |
| 24 "!grit/theme_resources.h", | 20 "!grit/theme_resources.h", |
| 25 ] | 21 ] |
| 26 | 22 |
| 27 specific_include_rules = { | 23 specific_include_rules = { |
| 28 ".*(test|test_util)\.(cc|h)$": [ | 24 ".*(test|test_util)\.(cc|h)$": [ |
| 29 "+content/public/test", | 25 "+content/public/test", |
| 30 | 26 |
| 31 # Temporarily allowed testing includes. See above. | 27 # Temporarily allowed testing includes. See above. |
| 32 # TODO(jamescook): Remove these. http://crbug.com/162530 | 28 # TODO(jamescook): Remove these. http://crbug.com/162530 |
| 33 "+chrome/browser/extensions/extension_api_unittest.h", | 29 "+chrome/browser/extensions/extension_api_unittest.h", |
| 34 "+chrome/browser/extensions/extension_service_unittest.h", | 30 "+chrome/browser/extensions/extension_service_unittest.h", |
| 35 "+chrome/browser/extensions/test_extension_system.h", | 31 "+chrome/browser/extensions/test_extension_system.h", |
| 36 "+chrome/common/chrome_paths.h", | 32 "+chrome/common/chrome_paths.h", |
| 37 "+chrome/common/extensions/manifest_tests/extension_manifest_test.h", | 33 "+chrome/common/extensions/manifest_tests/extension_manifest_test.h", |
| 38 "+chrome/test/base/testing_profile.h", | 34 "+chrome/test/base/testing_profile.h", |
| 39 ], | 35 ], |
| 40 "permissions_data_unittest\.cc": [ | 36 "permissions_data_unittest\.cc": [ |
| 41 "+chrome/common/chrome_version_info.h", | 37 "+chrome/common/chrome_version_info.h", |
| 42 "+chrome/common/extensions/extension_test_util.h", | 38 "+chrome/common/extensions/extension_test_util.h", |
| 43 "+chrome/common/extensions/features/feature_channel.h", | 39 "+chrome/common/extensions/features/feature_channel.h", |
| 44 "+chrome/common/extensions/permissions/socket_permission.h", | 40 "+chrome/common/extensions/permissions/socket_permission.h", |
| 45 ], | 41 ], |
| 46 } | 42 } |
| OLD | NEW |