Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: tools/gn/secondary/net/BUILD.gn

Issue 231673006: Add SSL support to the GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for minimal Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/gn/secondary/crypto/ssl/BUILD.gn ('k') | tools/gn/secondary/net/third_party/nss/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/crypto/ssl/BUILD.gn ('k') | tools/gn/secondary/net/third_party/nss/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698