Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Things within cc/base should not depend on things in cc/ outside of cc/base. | 1 # Things within cc/base should not depend on things in cc/ outside of cc/base. |
| 2 include_rules = [ | 2 include_rules = [ |
| 3 "-cc", | 3 "-cc", |
| 4 "+cc/base", | 4 "+cc/base", |
| 5 ] | 5 ] |
| 6 | 6 |
| 7 # Tests can use things in cc/test | 7 # Tests can use things in cc/test |
| 8 specific_include_rules = { | 8 specific_include_rules = { |
| 9 ".*unittest\.cc": [ | 9 ".*unittest\.cc": [ |
| 10 "+cc/test", | 10 "+cc/test", |
| 11 ] | 11 ], |
| 12 # Allow lap_timer.h for perftests | |
| 13 ".*perftest\.cc": [ | |
| 14 "+cc/debug/lap_timer.h", | |
| 15 ], | |
| 12 } | 16 } |
| OLD | NEW |