| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+crypto", | 2 "+crypto", |
| 3 "+gin", | 3 "+gin", |
| 4 "+jni", | 4 "+jni", |
| 5 "+third_party/apple_apsl", | 5 "+third_party/apple_apsl", |
| 6 "+third_party/libevent", | 6 "+third_party/libevent", |
| 7 "+third_party/mojo/src/mojo/public", |
| 7 "+third_party/nss", | 8 "+third_party/nss", |
| 8 "+third_party/zlib", | 9 "+third_party/zlib", |
| 9 "+sdch/open-vcdiff", | 10 "+sdch/open-vcdiff", |
| 10 "+v8", | 11 "+v8", |
| 11 | 12 |
| 12 # Most of net should not depend on icu, to keep size down when built as a | 13 # Most of net should not depend on icu, to keep size down when built as a |
| 13 # library. | 14 # library. |
| 14 "-base/i18n", | 15 "-base/i18n", |
| 15 "-third_party/icu", | 16 "-third_party/icu", |
| 16 ] | 17 ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 43 "+base/i18n", | 44 "+base/i18n", |
| 44 ], | 45 ], |
| 45 | 46 |
| 46 "ftp_util\.cc": [ | 47 "ftp_util\.cc": [ |
| 47 "+base/i18n", | 48 "+base/i18n", |
| 48 "+third_party/icu", | 49 "+third_party/icu", |
| 49 ], | 50 ], |
| 50 "ftp_directory_listing_parser\.cc": [ | 51 "ftp_directory_listing_parser\.cc": [ |
| 51 "+base/i18n", | 52 "+base/i18n", |
| 52 ], | 53 ], |
| 54 |
| 55 "run_all_unittests\.cc": [ |
| 56 "+third_party/mojo/src/mojo/edk", |
| 57 ], |
| 53 } | 58 } |
| 54 | 59 |
| 55 skip_child_includes = [ | 60 skip_child_includes = [ |
| 56 "third_party", | 61 "third_party", |
| 57 "tools/flip_server", | 62 "tools/flip_server", |
| 58 ] | 63 ] |
| OLD | NEW |