| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Nothing from base. | 2 # Nothing from base. |
| 3 "-base", | 3 "-base", |
| 4 # Nothing from chrome. | 4 # Nothing from chrome. |
| 5 "-chrome", | 5 "-chrome", |
| 6 # Anything from this dir. | 6 "+chrome/install_static/install_util.h", |
| 7 "+chrome/install_static", | |
| 8 # All registry access should go through nt_registry. | 7 # All registry access should go through nt_registry. |
| 9 "+chrome_elf/nt_registry/nt_registry.h", | 8 "+chrome_elf/nt_registry/nt_registry.h", |
| 10 # For the compile-time PRODUCT_VERSION macro. | |
| 11 "+components/version_info/version_info_values.h", | |
| 12 ] | 9 ] |
| 13 | |
| 14 specific_include_rules = { | |
| 15 ".*_unittest\.cc": [ | |
| 16 "+base", | |
| 17 ], | |
| 18 } | |
| OLD | NEW |