OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 | 10 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "NET_IMPLEMENTATION" | 78 "NET_IMPLEMENTATION" |
79 ] | 79 ] |
80 configs += [ ":net_win_size_truncation" ] | 80 configs += [ ":net_win_size_truncation" ] |
81 direct_dependent_configs = [ ":net_config" ] | 81 direct_dependent_configs = [ ":net_config" ] |
82 include_dirs = [] | 82 include_dirs = [] |
83 | 83 |
84 deps = [ | 84 deps = [ |
85 ":net_resources", | 85 ":net_resources", |
86 "//base", | 86 "//base", |
87 "//base:i18n", | 87 "//base:i18n", |
| 88 "//base:prefs", |
88 "//base/third_party/dynamic_annotations", | 89 "//base/third_party/dynamic_annotations", |
89 "//crypto", | 90 "//crypto", |
90 "//crypto:platform", | 91 "//crypto:platform", |
91 "//net/base/registry_controlled_domains", | 92 "//net/base/registry_controlled_domains", |
92 "//sdch", | 93 "//sdch", |
93 "//third_party/icu", | 94 "//third_party/icu", |
94 "//third_party/zlib", | 95 "//third_party/zlib", |
95 "//url", | 96 "//url", |
96 ] | 97 ] |
97 forward_dependent_configs_from = [ | 98 forward_dependent_configs_from = [ |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 set_sources_assignment_filter(sources_assignment_filter) | 514 set_sources_assignment_filter(sources_assignment_filter) |
514 | 515 |
515 if (!is_android_webview_build) { | 516 if (!is_android_webview_build) { |
516 deps += [ ":net_jni_headers" ] | 517 deps += [ ":net_jni_headers" ] |
517 | 518 |
518 # The net/android/keystore_openssl.cc source file needs to access an | 519 # The net/android/keystore_openssl.cc source file needs to access an |
519 # OpenSSL-internal header. | 520 # OpenSSL-internal header. |
520 include_dirs = [ "//third_party/openssl" ] | 521 include_dirs = [ "//third_party/openssl" ] |
521 } | 522 } |
522 } | 523 } |
523 | 524 |
524 if (use_icu_alternatives_on_android) { | 525 if (use_icu_alternatives_on_android) { |
525 deps -= [ | 526 deps -= [ |
526 "//base:i18n", | 527 "//base:i18n", |
527 "//third_party/icu", | 528 "//third_party/icu", |
528 ] | 529 ] |
529 sources -= [ | 530 sources -= [ |
530 "base/filename_util_icu.cc", | 531 "base/filename_util_icu.cc", |
531 "base/net_string_util_icu.cc", | 532 "base/net_string_util_icu.cc", |
532 "base/net_util_icu.cc", | 533 "base/net_util_icu.cc", |
533 ] | 534 ] |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 configs += [ ":net_win_size_truncation" ] | 1057 configs += [ ":net_win_size_truncation" ] |
1057 defines = [] | 1058 defines = [] |
1058 | 1059 |
1059 deps = [ | 1060 deps = [ |
1060 ":http_server", | 1061 ":http_server", |
1061 ":net", | 1062 ":net", |
1062 ":quic_tools", | 1063 ":quic_tools", |
1063 ":test_support", | 1064 ":test_support", |
1064 "//base", | 1065 "//base", |
1065 "//base:i18n", | 1066 "//base:i18n", |
| 1067 "//base:prefs_test_support", |
1066 "//base/allocator", | 1068 "//base/allocator", |
1067 "//base/third_party/dynamic_annotations", | 1069 "//base/third_party/dynamic_annotations", |
1068 "//crypto", | 1070 "//crypto", |
1069 "//crypto:platform", | 1071 "//crypto:platform", |
1070 "//net/base/registry_controlled_domains", | 1072 "//net/base/registry_controlled_domains", |
1071 "//testing/gmock", | 1073 "//testing/gmock", |
1072 "//testing/gtest", | 1074 "//testing/gtest", |
1073 "//third_party/zlib", | 1075 "//third_party/zlib", |
1074 "//url", | 1076 "//url", |
1075 ] | 1077 ] |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1316 sources = [ "quic/quic_server_bin.cc" ] | 1318 sources = [ "quic/quic_server_bin.cc" ] |
1317 deps = [ | 1319 deps = [ |
1318 ":quic_tools", | 1320 ":quic_tools", |
1319 ":net", | 1321 ":net", |
1320 "//base", | 1322 "//base", |
1321 "//third_party/openssl", | 1323 "//third_party/openssl", |
1322 ] | 1324 ] |
1323 } | 1325 } |
1324 | 1326 |
1325 } # !is_android | 1327 } # !is_android |
OLD | NEW |