| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+crypto", | 2 "+crypto", |
| 3 "+gin", | 3 "+gin", |
| 4 "+jni", | 4 "+jni", |
| 5 "+mojo/common", | 5 "+mojo/common", |
| 6 "+mojo/public", | 6 "+mojo/public", |
| 7 "+third_party/apple_apsl", | 7 "+third_party/apple_apsl", |
| 8 "+third_party/nss", | 8 "+third_party/nss", |
| 9 "+third_party/protobuf/src/google/protobuf", | 9 "+third_party/protobuf/src/google/protobuf", |
| 10 "+third_party/zlib", | 10 "+third_party/zlib", |
| 11 "+sdch/open-vcdiff", | 11 "+sdch/open-vcdiff", |
| 12 "+v8", | 12 "+v8", |
| 13 | 13 |
| 14 # Most of net should not depend on icu, to keep size down when built as a | 14 # Most of net should not depend on icu, and brotli to keep size down when |
| 15 # library. | 15 # built as a library. |
| 16 "-base/i18n", | 16 "-base/i18n", |
| 17 "-third_party/brotli", |
| 17 "-third_party/icu", | 18 "-third_party/icu", |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 specific_include_rules = { | 21 specific_include_rules = { |
| 21 # Within net, only used by file: requests. | 22 # Within net, only used by file: requests. |
| 22 "directory_lister(\.cc|_unittest\.cc)": [ | 23 "directory_lister(\.cc|_unittest\.cc)": [ |
| 23 "+base/i18n", | 24 "+base/i18n", |
| 24 ], | 25 ], |
| 25 | 26 |
| 26 # Within net, only used by file: requests. | 27 # Within net, only used by file: requests. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 49 "+base/i18n", | 50 "+base/i18n", |
| 50 "+third_party/icu", | 51 "+third_party/icu", |
| 51 ], | 52 ], |
| 52 "ftp_directory_listing_parser\.cc": [ | 53 "ftp_directory_listing_parser\.cc": [ |
| 53 "+base/i18n", | 54 "+base/i18n", |
| 54 ], | 55 ], |
| 55 | 56 |
| 56 "run_all_unittests\.cc": [ | 57 "run_all_unittests\.cc": [ |
| 57 "+third_party/mojo/src/mojo/edk", | 58 "+third_party/mojo/src/mojo/edk", |
| 58 ], | 59 ], |
| 60 |
| 61 "brotli_filter\.cc": [ |
| 62 "+third_party/brotli", |
| 63 ], |
| 59 } | 64 } |
| 60 | 65 |
| 61 skip_child_includes = [ | 66 skip_child_includes = [ |
| 62 "third_party", | 67 "third_party", |
| 63 "tools/flip_server", | 68 "tools/flip_server", |
| 64 ] | 69 ] |
| OLD | NEW |