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

Side by Side Diff: net/BUILD.gn

Issue 1021153003: Move simple QUIC client classes around in the .gyp files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops! Created 5 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
« no previous file with comments | « no previous file | net/net.gyp » ('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("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 "quic/quic_time_wait_list_manager.cc", 1257 "quic/quic_time_wait_list_manager.cc",
1258 "quic/quic_time_wait_list_manager.h", 1258 "quic/quic_time_wait_list_manager.h",
1259 ] 1259 ]
1260 deps = [ 1260 deps = [
1261 ":net", 1261 ":net",
1262 "//base", 1262 "//base",
1263 "//base/third_party/dynamic_annotations", 1263 "//base/third_party/dynamic_annotations",
1264 "//url", 1264 "//url",
1265 ] 1265 ]
1266 } 1266 }
1267 1267 source_set("simple_quic_tools") {
1268 executable("simple_quic_client") {
1269 testonly = true
1270 sources = [ 1268 sources = [
1271 "tools/quic/quic_simple_client.cc", 1269 "tools/quic/quic_simple_client.cc",
1272 "tools/quic/quic_simple_client.h", 1270 "tools/quic/quic_simple_client.h",
1273 "tools/quic/quic_simple_client_bin.cc",
1274 "tools/quic/quic_simple_client_session.cc", 1271 "tools/quic/quic_simple_client_session.cc",
1275 "tools/quic/quic_simple_client_session.h", 1272 "tools/quic/quic_simple_client_session.h",
1276 "tools/quic/quic_simple_client_stream.cc", 1273 "tools/quic/quic_simple_client_stream.cc",
1277 "tools/quic/quic_simple_client_stream.h", 1274 "tools/quic/quic_simple_client_stream.h",
1278 ] 1275 ]
1279 deps = [ 1276 deps = [
1280 ":net", 1277 ":net",
1281 "//base", 1278 "//base",
1279 "//base/third_party/dynamic_annotations",
1280 "//url",
1281 ]
1282 }
1283
1284 executable("simple_quic_client") {
1285 testonly = true
1286 sources = [
1287 "tools/quic/quic_simple_client_bin.cc",
1288 ]
1289 deps = [
1290 ":net",
1291 ":simple_quic_tools",
1292 "//base",
1282 "//url", 1293 "//url",
1283 ] 1294 ]
1284 } 1295 }
1285 1296
1286 # TODO(GYP) make this compile on Android, we need some native test deps done. 1297 # TODO(GYP) make this compile on Android, we need some native test deps done.
1287 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. 1298 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
1288 # TODO(GYP) Also doesn't work on Mac, need to figure out why not. 1299 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1289 if (!is_android && !is_win && !is_mac) { 1300 if (!is_android && !is_win && !is_mac) {
1290 test("net_unittests") { 1301 test("net_unittests") {
1291 sources = gypi_values.net_test_sources 1302 sources = gypi_values.net_test_sources
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 } else { 1638 } else {
1628 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1639 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1629 } 1640 }
1630 1641
1631 if (is_win && icu_use_data_file) { 1642 if (is_win && icu_use_data_file) {
1632 # This is needed to trigger the dll copy step on windows. 1643 # This is needed to trigger the dll copy step on windows.
1633 # TODO(mark): Specifying this here shouldn't be necessary. 1644 # TODO(mark): Specifying this here shouldn't be necessary.
1634 deps += [ "//third_party/icu:icudata" ] 1645 deps += [ "//third_party/icu:icudata" ]
1635 } 1646 }
1636 } 1647 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698