| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/public/common", | 2 "+content/public/common", |
| 3 "+crypto", | 3 "+crypto", |
| 4 "+testing", | 4 "+testing", |
| 5 "+ui" | 5 "+ui" |
| 6 ] | 6 ] |
| 7 | 7 |
| 8 # More specific rules for what we are allowed to include. | 8 # More specific rules for what we are allowed to include. |
| 9 specific_include_rules = { | 9 specific_include_rules = { |
| 10 ".*test\.cc$": [ | 10 ".*test\.cc$": [ |
| 11 "+content/public/test", | 11 "+content/public/test", |
| 12 ], | 12 ], |
| 13 # Temporary includes for tests. | 13 # Temporary includes for tests. |
| 14 "^api_permission_set_unittest\.cc$": [ | 14 "^api_permission_set_unittest\.cc$": [ |
| 15 "+chrome/common/extensions/extension_messages.h", | 15 "+chrome/common/extensions/extension_messages.h", |
| 16 ], | 16 ], |
| 17 "^manifest_permission_set_unittest\.cc$": [ | 17 "^manifest_permission_set_unittest\.cc$": [ |
| 18 "+chrome/common/extensions/extension_messages.h", | 18 "+chrome/common/extensions/extension_messages.h", |
| 19 ], | 19 ], |
| 20 "^permissions_data_unittest\.cc$": [ |
| 21 "+chrome/common/chrome_version_info.h", |
| 22 "+chrome/common/extensions/extension_test_util.h", |
| 23 "+chrome/common/extensions/features/feature_channel.h", |
| 24 "+chrome/common/extensions/permissions/socket_permission.h", |
| 25 ], |
| 20 } | 26 } |
| OLD | NEW |