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

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

Issue 206813002: Remove GN GYP generator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/ipc/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 external = true
10 sources = [ 9 sources = [
11 "android/cert_verify_result_android.h", 10 "android/cert_verify_result_android.h",
12 "android/cert_verify_result_android_list.h", 11 "android/cert_verify_result_android_list.h",
13 "android/gurl_utils.cc", 12 "android/gurl_utils.cc",
14 "android/gurl_utils.h", 13 "android/gurl_utils.h",
15 "android/keystore.cc", 14 "android/keystore.cc",
16 "android/keystore.h", 15 "android/keystore.h",
17 "android/keystore_openssl.cc", 16 "android/keystore_openssl.cc",
18 "android/keystore_openssl.h", 17 "android/keystore_openssl.h",
19 "android/net_jni_registrar.cc", 18 "android/net_jni_registrar.cc",
(...skipping 1171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 if (posix_avoid_mmap) { 1190 if (posix_avoid_mmap) {
1192 defines = [ "POSIX_AVOID_MMAP" ] 1191 defines = [ "POSIX_AVOID_MMAP" ]
1193 sources -= [ "disk_cache/mapped_file_posix.cc" ] 1192 sources -= [ "disk_cache/mapped_file_posix.cc" ]
1194 } else { # !posix_avoid_mmap 1193 } else { # !posix_avoid_mmap
1195 sources -= [ "disk_cache/mapped_file_avoid_mmap_posix.cc" ] 1194 sources -= [ "disk_cache/mapped_file_avoid_mmap_posix.cc" ]
1196 } 1195 }
1197 } 1196 }
1198 } 1197 }
1199 1198
1200 #grit("net_resources") { 1199 #grit("net_resources") {
1201 # external = true
1202 # source = "base/net_resources.grd" 1200 # source = "base/net_resources.grd"
1203 #} 1201 #}
1204 1202
1205 static_library("http_server") { 1203 static_library("http_server") {
1206 external = true
1207 sources = [ 1204 sources = [
1208 "server/http_connection.cc", 1205 "server/http_connection.cc",
1209 "server/http_connection.h", 1206 "server/http_connection.h",
1210 "server/http_server.cc", 1207 "server/http_server.cc",
1211 "server/http_server.h", 1208 "server/http_server.h",
1212 "server/http_server_request_info.cc", 1209 "server/http_server_request_info.cc",
1213 "server/http_server_request_info.h", 1210 "server/http_server_request_info.h",
1214 "server/http_server_response_info.cc", 1211 "server/http_server_response_info.cc",
1215 "server/http_server_response_info.h", 1212 "server/http_server_response_info.h",
1216 "server/web_socket.cc", 1213 "server/web_socket.cc",
1217 "server/web_socket.h", 1214 "server/web_socket.h",
1218 ] 1215 ]
1219 configs += [ "//build/config/compiler:wexit_time_destructors" ] 1216 configs += [ "//build/config/compiler:wexit_time_destructors" ]
1220 deps = [ 1217 deps = [
1221 ":net", 1218 ":net",
1222 "//base", 1219 "//base",
1223 ] 1220 ]
1224 } 1221 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/ipc/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