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/common/extensions/features/feature_channel.h", | 15 "!chrome/common/extensions/features/feature_channel.h", |
| 16 "!chrome/renderer/extensions/dispatcher.h", |
| 17 "!chrome/renderer/extensions/extension_helper.h", |
16 "!grit/chromium_strings.h", | 18 "!grit/chromium_strings.h", |
17 "!grit/common_resources.h", | 19 "!grit/common_resources.h", |
18 "!grit/extensions_api_resources.h", | 20 "!grit/extensions_api_resources.h", |
19 "!grit/generated_resources.h", | 21 "!grit/generated_resources.h", |
20 "!grit/theme_resources.h", | 22 "!grit/theme_resources.h", |
21 ] | 23 ] |
22 | 24 |
23 specific_include_rules = { | 25 specific_include_rules = { |
24 ".*(test|test_util)\.(cc|h)$": [ | 26 ".*(test|test_util)\.(cc|h)$": [ |
25 "+content/public/test", | 27 "+content/public/test", |
(...skipping 10 matching lines...) Expand all Loading... |
36 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ | 38 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ |
37 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", | 39 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", |
38 "+chrome/common/extensions/features/feature_channel.h", | 40 "+chrome/common/extensions/features/feature_channel.h", |
39 ], | 41 ], |
40 "permissions_data_unittest\.cc": [ | 42 "permissions_data_unittest\.cc": [ |
41 "+chrome/common/chrome_version_info.h", | 43 "+chrome/common/chrome_version_info.h", |
42 "+chrome/common/extensions/extension_test_util.h", | 44 "+chrome/common/extensions/extension_test_util.h", |
43 "+chrome/common/extensions/features/feature_channel.h", | 45 "+chrome/common/extensions/features/feature_channel.h", |
44 ], | 46 ], |
45 } | 47 } |
OLD | NEW |