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