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("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 component("net") { | 8 component("net") { |
9 sources = [ | 9 sources = [ |
10 "android/cert_verify_result_android.h", | 10 "android/cert_verify_result_android.h", |
(...skipping 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 ] | 1054 ] |
1055 | 1055 |
1056 defines = [ "NET_IMPLEMENTATION" ] | 1056 defines = [ "NET_IMPLEMENTATION" ] |
1057 | 1057 |
1058 deps = [ | 1058 deps = [ |
1059 #":net_resources", | 1059 #":net_resources", |
1060 "//base", | 1060 "//base", |
1061 "//base:i18n", | 1061 "//base:i18n", |
1062 "//base/third_party/dynamic_annotations", | 1062 "//base/third_party/dynamic_annotations", |
1063 "//crypto", | 1063 "//crypto", |
1064 "//crypto/ssl:metassl", | 1064 "//crypto:ssl", |
1065 "//sdch", | 1065 "//sdch", |
1066 "//third_party/icu", | 1066 "//third_party/icu", |
1067 "//third_party/zlib", | 1067 "//third_party/zlib", |
1068 "//url", | 1068 "//url", |
1069 ] | 1069 ] |
1070 | 1070 |
1071 if (is_win) { | 1071 if (is_win) { |
1072 sources -= [ | 1072 sources -= [ |
1073 "http/http_auth_handler_ntlm_portable.cc", | 1073 "http/http_auth_handler_ntlm_portable.cc", |
1074 "socket/tcp_socket_libevent.cc", | 1074 "socket/tcp_socket_libevent.cc", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1211 "server/http_server_response_info.h", | 1211 "server/http_server_response_info.h", |
1212 "server/web_socket.cc", | 1212 "server/web_socket.cc", |
1213 "server/web_socket.h", | 1213 "server/web_socket.h", |
1214 ] | 1214 ] |
1215 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 1215 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
1216 deps = [ | 1216 deps = [ |
1217 ":net", | 1217 ":net", |
1218 "//base", | 1218 "//base", |
1219 ] | 1219 ] |
1220 } | 1220 } |
OLD | NEW |