• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1include_rules = [
2  # Require explicit dependencies in each directory.
3  "-mojo/public",
4  # But everyone can depend on the C system headers.
5  "+mojo/public/c/system",
6]
7
8specific_include_rules = {
9  r".*_(unit|perf)test\.cc": [
10    "+testing",
11    # Our test harness is C++, so allow the use of C++:
12    "+mojo/public/cpp/system",
13    "+mojo/public/cpp/test_support",
14    "+mojo/public/cpp/utility",
15  ],
16}
17