| 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_renderer_resources.h", | 
| 5   "+grit/extensions_resources.h", | 6   "+grit/extensions_resources.h", | 
| 6   "+testing", | 7   "+testing", | 
| 7   "+ui", | 8   "+ui", | 
| 8 | 9 | 
| 9   # Temporarily allowed includes as part of the app shell/extensions refactor. | 10   # Temporarily allowed includes as part of the app shell/extensions refactor. | 
| 10   # | 11   # | 
| 11   # NOTE: Please do not add includes without talking to the app shell team; | 12   # NOTE: Please do not add includes without talking to the app shell team; | 
| 12   # see OWNERS for this directory. | 13   # see OWNERS for this directory. | 
| 13   # | 14   # | 
| 14   # TODO(jamescook): Remove these. http://crbug.com/162530 | 15   # TODO(jamescook): Remove these. http://crbug.com/162530 | 
| 15   "!chrome/browser/chrome_notification_types.h", | 16   "!chrome/browser/chrome_notification_types.h", | 
| 16   # This is needed for renderer JS sources which should eventually move to |  | 
| 17   # the extensions_resources target. |  | 
| 18   "!grit/renderer_resources.h", |  | 
| 19 ] | 17 ] | 
| 20 | 18 | 
| 21 specific_include_rules = { | 19 specific_include_rules = { | 
| 22   ".*(test|test_util)\.(cc|h)$": [ | 20   ".*(test|test_util)\.(cc|h)$": [ | 
| 23     "+content/public/test", | 21     "+content/public/test", | 
| 24 | 22 | 
| 25     # Temporarily allowed testing includes.  See above. | 23     # Temporarily allowed testing includes.  See above. | 
| 26     # TODO(jamescook): Remove these. http://crbug.com/162530 | 24     # TODO(jamescook): Remove these. http://crbug.com/162530 | 
| 27     "+chrome/browser/apps/app_browsertest_util.h", | 25     "+chrome/browser/apps/app_browsertest_util.h", | 
| 28     "+chrome/browser/extensions/api/management/management_api.h", | 26     "+chrome/browser/extensions/api/management/management_api.h", | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
| 42   ], | 40   ], | 
| 43   "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ | 41   "(simple|complex)_feature_unittest\.cc|base_feature_provider_unittest\.cc": [ | 
| 44     "+chrome/common/extensions/features/chrome_channel_feature_filter.h", | 42     "+chrome/common/extensions/features/chrome_channel_feature_filter.h", | 
| 45   ], | 43   ], | 
| 46   "permissions_data_unittest\.cc": [ | 44   "permissions_data_unittest\.cc": [ | 
| 47     "+chrome/common/chrome_version_info.h", | 45     "+chrome/common/chrome_version_info.h", | 
| 48     "+chrome/common/extensions/extension_test_util.h", | 46     "+chrome/common/extensions/extension_test_util.h", | 
| 49     "+chrome/common/extensions/features/feature_channel.h", | 47     "+chrome/common/extensions/features/feature_channel.h", | 
| 50   ], | 48   ], | 
| 51 } | 49 } | 
| OLD | NEW | 
|---|