OLD | NEW |
---|---|
1 include_rules = [ | 1 include_rules = [ |
2 # Do not add Chrome dependencies. Much work went into removing them. | |
3 "-chrome", | |
Yoyo Zhou
2014/07/11 01:51:53
I think this is superfluous but the comment is goo
James Cook
2014/07/11 21:19:28
Done.
| |
4 | |
2 "+components/url_matcher", | 5 "+components/url_matcher", |
3 "+content/public/common", | 6 "+content/public/common", |
4 "+content/public/test", | 7 "+content/public/test", |
5 "+crypto", | 8 "+crypto", |
6 "+grit/extensions_renderer_resources.h", | 9 "+grit/extensions_renderer_resources.h", |
7 "+grit/extensions_resources.h", | 10 "+grit/extensions_resources.h", |
8 "+testing", | 11 "+testing", |
9 "+ui", | 12 "+ui", |
10 | 13 |
11 # Temporarily allowed includes as part of the app shell/extensions refactor. | 14 # Temporarily allowed includes as part of the app shell/extensions refactor. |
12 # | 15 # |
13 # NOTE: Please do not add includes without talking to the app shell team; | 16 # NOTE: Please do not add includes without talking to the app shell team; |
14 # see OWNERS for this directory. | 17 # see OWNERS for this directory. |
15 # | 18 # |
16 # TODO(jamescook): Remove these. http://crbug.com/162530 | 19 # TODO(jamescook): Remove this. http://crbug.com/392622 |
17 "!chrome/browser/chrome_notification_types.h", | 20 "!chrome/browser/chrome_notification_types.h", |
18 ] | 21 ] |
19 | 22 |
20 specific_include_rules = { | 23 specific_include_rules = { |
21 ".*(test|test_util)\.(cc|h)$": [ | 24 ".*(test|test_util)\.(cc|h)$": [ |
22 "+content/public/test", | 25 "+content/public/test", |
23 | 26 |
24 # Temporarily allowed testing includes. See above. | 27 # Temporarily allowed testing includes. See above. |
25 # TODO(jamescook): Remove these. http://crbug.com/162530 | 28 # TODO(jamescook): Remove these. http://crbug.com/162530 |
26 "+chrome/browser/apps/app_browsertest_util.h", | 29 "+chrome/browser/apps/app_browsertest_util.h", |
(...skipping 16 matching lines...) Expand all Loading... | |
43 ], | 46 ], |
44 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ | 47 "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ |
45 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", | 48 "+chrome/common/extensions/features/chrome_channel_feature_filter.h", |
46 ], | 49 ], |
47 "permissions_data_unittest\.cc": [ | 50 "permissions_data_unittest\.cc": [ |
48 "+chrome/common/chrome_version_info.h", | 51 "+chrome/common/chrome_version_info.h", |
49 "+chrome/common/extensions/extension_test_util.h", | 52 "+chrome/common/extensions/extension_test_util.h", |
50 "+chrome/common/extensions/features/feature_channel.h", | 53 "+chrome/common/extensions/features/feature_channel.h", |
51 ], | 54 ], |
52 } | 55 } |
OLD | NEW |