| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+base", | 2 "+base", |
| 3 "+content/public/common", | 3 "+content/public/common", |
| 4 "+crypto", | 4 "+crypto", |
| 5 "+googleurl", | 5 "+googleurl", |
| 6 "+testing", | 6 "+testing", |
| 7 "+ui" | 7 "+ui" |
| 8 ] | 8 ] |
| 9 | 9 |
| 10 # More specific rules for what we are allowed to include. | 10 # More specific rules for what we are allowed to include. |
| 11 specific_include_rules = { | 11 specific_include_rules = { |
| 12 ".*test\.cc": [ | 12 ".*test\.cc": [ |
| 13 # For chrome::TEST_DATA_DIR; test data should be migrated to src/extensions. | |
| 14 "+chrome/common/chrome_paths.h", | |
| 15 "+content/public/test", | 13 "+content/public/test", |
| 16 ] | 14 ] |
| 17 } | 15 } |
| OLD | NEW |