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