OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # Require explicit dependencies in each directory. | 2 # Require explicit dependencies in each directory. |
3 "-mojo/public", | 3 "-mojo/public", |
4 # But everyone can depend on the C and C++ system headers. | 4 # But everyone can depend on the C and C++ system headers. |
5 "+mojo/public/c/system", | 5 "+mojo/public/c/system", |
6 "+mojo/public/cpp/system", | 6 "+mojo/public/cpp/system", |
7 ] | 7 ] |
| 8 |
| 9 specific_include_rules = { |
| 10 r".*_(unit|perf)test\.cc": [ |
| 11 "+testing", |
| 12 "+mojo/public/cpp/test_support", |
| 13 "+mojo/public/cpp/utility", |
| 14 ], |
| 15 } |
OLD | NEW |