• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1specific_include_rules = {
2  "jump-table-assembler\.(cc|h)": [
3    # The JumpTableAssembler should not depend on any wasm-specific headers.
4    # The only allowed include is 'src/codegen' for assembler headers.
5    "-src",
6    "+src/codegen",
7    "+src/wasm/jump-table-assembler.h",
8  ],
9  "c-api\.cc": [
10    "+include/libplatform/libplatform.h",
11    "+third_party/wasm-api/wasm.h",
12  ],
13  "c-api\.h": [
14    "+third_party/wasm-api/wasm.hh",
15  ],
16}
17