| 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, to keep size down when built as a |
| 15 # library. | 15 # library. |
| 16 "-base/i18n", | 16 "-base/i18n", |
| 17 "-third_party/icu", | 17 "-third_party/icu", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 specific_include_rules = { | 20 specific_include_rules = { |
| 21 # Within net, only used by file: requests. | 21 # Within net, only used by file: requests. |
| 22 "directory_lister(\.cc|_unittest\.cc)": [ | 22 "directory_lister(\.cc|_unittest\.cc)": [ |
| 23 "+base/i18n", | 23 "+base/i18n", |
| 24 ], | 24 ], |
| 25 | 25 |
| 26 # Functions largely not used by the rest of net. |
| 27 "directory_listing\.cc": [ |
| 28 "+base/i18n", |
| 29 ], |
| 30 |
| 26 # Within net, only used by file: requests. | 31 # Within net, only used by file: requests. |
| 27 "filename_util_icu\.cc": [ | 32 "filename_util_icu\.cc": [ |
| 28 "+base/i18n/file_util_icu.h", | 33 "+base/i18n/file_util_icu.h", |
| 29 ], | 34 ], |
| 30 | 35 |
| 31 # Functions largely not used by the rest of net. | |
| 32 "net_util_icu\.cc": [ | |
| 33 "+base/i18n", | |
| 34 "+third_party/icu", | |
| 35 ], | |
| 36 | |
| 37 # Consolidated string functions that depend on icu. | 36 # Consolidated string functions that depend on icu. |
| 38 "net_string_util_icu\.cc": [ | 37 "net_string_util_icu\.cc": [ |
| 39 "+base/i18n/i18n_constants.h", | 38 "+base/i18n/i18n_constants.h", |
| 40 "+base/i18n/icu_string_conversions.h", | 39 "+base/i18n/icu_string_conversions.h", |
| 41 "+third_party/icu/source/common/unicode/ucnv.h" | 40 "+third_party/icu/source/common/unicode/ucnv.h" |
| 42 ], | 41 ], |
| 43 | 42 |
| 44 "websocket_channel\.h": [ | 43 "websocket_channel\.h": [ |
| 45 "+base/i18n", | 44 "+base/i18n", |
| 46 ], | 45 ], |
| 47 | 46 |
| 48 "ftp_util\.cc": [ | 47 "ftp_util\.cc": [ |
| 49 "+base/i18n", | 48 "+base/i18n", |
| 50 "+third_party/icu", | 49 "+third_party/icu", |
| 51 ], | 50 ], |
| 52 "ftp_directory_listing_parser\.cc": [ | 51 "ftp_directory_listing_parser\.cc": [ |
| 53 "+base/i18n", | 52 "+base/i18n", |
| 54 ], | 53 ], |
| 55 | 54 |
| 56 "run_all_unittests\.cc": [ | 55 "run_all_unittests\.cc": [ |
| 57 "+third_party/mojo/src/mojo/edk", | 56 "+third_party/mojo/src/mojo/edk", |
| 58 ], | 57 ], |
| 59 } | 58 } |
| 60 | 59 |
| 61 skip_child_includes = [ | 60 skip_child_includes = [ |
| 62 "third_party", | 61 "third_party", |
| 63 "tools/flip_server", | 62 "tools/flip_server", |
| 64 ] | 63 ] |
| OLD | NEW |