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 "+grit/extensions_resources.h", | 5 "+grit/extensions_resources.h", |
6 "+testing", | 6 "+testing", |
7 "+ui", | 7 "+ui", |
8 | 8 |
9 # Temporarily allowed includes as part of the app shell/extensions refactor. | 9 # Temporarily allowed includes as part of the app shell/extensions refactor. |
10 # | 10 # |
11 # NOTE: Please do not add includes without talking to the app shell team; | 11 # NOTE: Please do not add includes without talking to the app shell team; |
12 # see OWNERS for this directory. | 12 # see OWNERS for this directory. |
13 # | 13 # |
14 # TODO(jamescook): Remove these. http://crbug.com/162530 | 14 # TODO(jamescook): Remove these. http://crbug.com/162530 |
15 "!chrome/browser/chrome_notification_types.h", | 15 "!chrome/browser/chrome_notification_types.h", |
16 "!grit/common_resources.h", | 16 "!grit/common_resources.h", |
17 '!grit/extensions_api_resources.h', | 17 '!grit/extensions_api_resources.h', |
18 # This is needed for renderer JS sources which should eventually move to | 18 # This is needed for renderer JS sources which should eventually move to |
19 # the extensions_resources target. | 19 # the extensions_resources target. |
20 "!grit/renderer_resources.h", | 20 "!grit/renderer_resources.h", |
21 ] | 21 ] |
22 | 22 |
23 specific_include_rules = { | 23 specific_include_rules = { |
24 ".*(test|test_util)\.(cc|h)$": [ | 24 ".*(test|test_util)\.(cc|h)$": [ |
25 "+content/public/test", | 25 "+content/public/test", |
26 | 26 |
27 # Temporarily allowed testing includes. See above. | 27 # Temporarily allowed testing includes. See above. |
28 # TODO(jamescook): Remove these. http://crbug.com/162530 | 28 # TODO(jamescook): Remove these. http://crbug.com/162530 |
| 29 "+chrome/browser/apps/app_browsertest_util.h", |
| 30 "+chrome/browser/extensions/api/management/management_api.h", |
29 "+chrome/browser/extensions/api/permissions/permissions_api.h", | 31 "+chrome/browser/extensions/api/permissions/permissions_api.h", |
30 "+chrome/browser/extensions/extension_api_unittest.h", | 32 "+chrome/browser/extensions/extension_api_unittest.h", |
31 "+chrome/browser/extensions/extension_apitest.h", | 33 "+chrome/browser/extensions/extension_apitest.h", |
| 34 "+chrome/browser/extensions/extension_function_test_utils.h", |
32 "+chrome/browser/extensions/extension_service_unittest.h", | 35 "+chrome/browser/extensions/extension_service_unittest.h", |
| 36 "+chrome/browser/extensions/test_extension_dir.h", |
33 "+chrome/browser/extensions/test_extension_system.h", | 37 "+chrome/browser/extensions/test_extension_system.h", |
34 "+chrome/browser/ui/browser.h", | 38 "+chrome/browser/ui/browser.h", |
35 "+chrome/common/chrome_paths.h", | 39 "+chrome/common/chrome_paths.h", |
36 "+chrome/common/extensions/features/feature_channel.h", | 40 "+chrome/common/extensions/features/feature_channel.h", |
37 "+chrome/common/extensions/manifest_tests/extension_manifest_test.h", | 41 "+chrome/common/extensions/manifest_tests/extension_manifest_test.h", |
38 "+chrome/test/base/testing_profile.h", | 42 "+chrome/test/base/testing_profile.h", |
| 43 "+chrome/test/base/ui_test_utils.h", |
39 ], | 44 ], |
40 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ | 45 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ |
41 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", | 46 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", |
42 ], | 47 ], |
43 "permissions_data_unittest\.cc": [ | 48 "permissions_data_unittest\.cc": [ |
44 "+chrome/common/chrome_version_info.h", | 49 "+chrome/common/chrome_version_info.h", |
45 "+chrome/common/extensions/extension_test_util.h", | 50 "+chrome/common/extensions/extension_test_util.h", |
46 "+chrome/common/extensions/features/feature_channel.h", | 51 "+chrome/common/extensions/features/feature_channel.h", |
47 ], | 52 ], |
48 } | 53 } |
OLD | NEW |