| 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 | 8 |
| 9 # More specific rules for what we are allowed to include. | 9 # More specific rules for what we are allowed to include. |
| 10 specific_include_rules = { | 10 specific_include_rules = { |
| 11 ".*test\.(h|cc)$": [ | 11 ".*test\.(h|cc)$": [ |
| 12 "+content/public/test", | 12 "+content/public/test", |
| 13 ], | 13 ], |
| 14 # Temporary includes for tests. | 14 # Temporary includes for tests. |
| 15 "^api_permission_set_unittest\.cc$": [ | |
| 16 "+chrome/common/extensions/extension_messages.h", | |
| 17 ], | |
| 18 "^manifest_permission_set_unittest\.cc$": [ | |
| 19 "+chrome/common/extensions/extension_messages.h", | |
| 20 ], | |
| 21 "^permissions_data_unittest\.cc$": [ | 15 "^permissions_data_unittest\.cc$": [ |
| 22 "+chrome/common/chrome_version_info.h", | 16 "+chrome/common/chrome_version_info.h", |
| 23 "+chrome/common/extensions/extension_test_util.h", | 17 "+chrome/common/extensions/extension_test_util.h", |
| 24 "+chrome/common/extensions/features/feature_channel.h", | 18 "+chrome/common/extensions/features/feature_channel.h", |
| 25 "+chrome/common/extensions/permissions/socket_permission.h", | 19 "+chrome/common/extensions/permissions/socket_permission.h", |
| 26 ], | 20 ], |
| 27 } | 21 } |
| OLD | NEW |