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

Side by Side Diff: net/BUILD.gn

Issue 1303973009: [DO NOT COMMIT] Re-use the dafsa code for s-w-r histograms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Correct the build files. Created 5 years, 1 month 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
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 "tools/quic/synchronous_host_resolver.h", 1268 "tools/quic/synchronous_host_resolver.h",
1269 ] 1269 ]
1270 deps = [ 1270 deps = [
1271 ":net", 1271 ":net",
1272 "//base", 1272 "//base",
1273 "//base/third_party/dynamic_annotations", 1273 "//base/third_party/dynamic_annotations",
1274 "//url", 1274 "//url",
1275 ] 1275 ]
1276 } 1276 }
1277 1277
1278 source_set("swr_histogram_domains") {
1279 sources = [
1280 "base/swr_histogram_domains/swr_histogram_domains.cc",
1281 "base/swr_histogram_domains/swr_histogram_domains.h",
1282 ]
1283 deps = [
1284 ":net",
1285 "//base:base",
tyoshino (SeeGerritForStatus) 2015/11/04 08:34:07 :base can be omitted? I like making deps specific
Adam Rice 2015/11/05 05:30:40 Done, thanks.
1286 "//net/base/swr_histogram_domains",
tyoshino (SeeGerritForStatus) 2015/11/04 08:34:07 can we make distinction between net/base/swr_histo
Adam Rice 2015/11/05 05:30:40 I renamed //net:swr_histogram_domains to swr_domai
1287 ]
1288 configs += net_shared_configs
1289 }
1290
1278 if (!is_ios) { 1291 if (!is_ios) {
1279 executable("quic_client") { 1292 executable("quic_client") {
1280 sources = [ 1293 sources = [
1281 "tools/quic/quic_simple_client_bin.cc", 1294 "tools/quic/quic_simple_client_bin.cc",
1282 ] 1295 ]
1283 deps = [ 1296 deps = [
1284 ":net", 1297 ":net",
1285 ":simple_quic_tools", 1298 ":simple_quic_tools",
1286 "//base", 1299 "//base",
1287 "//build/config/sanitizers:deps", 1300 "//build/config/sanitizers:deps",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 "//build/config/compiler:no_size_t_to_int_warning", 1343 "//build/config/compiler:no_size_t_to_int_warning",
1331 ] 1344 ]
1332 defines = [] 1345 defines = []
1333 1346
1334 deps = [ 1347 deps = [
1335 ":balsa", 1348 ":balsa",
1336 ":extras", 1349 ":extras",
1337 ":http_server", 1350 ":http_server",
1338 ":net", 1351 ":net",
1339 ":simple_quic_tools", 1352 ":simple_quic_tools",
1353 ":swr_histogram_domains",
1340 ":test_support", 1354 ":test_support",
1341 "//base", 1355 "//base",
1342 "//base:i18n", 1356 "//base:i18n",
1343 "//base:prefs_test_support", 1357 "//base:prefs_test_support",
1344 "//base/allocator", 1358 "//base/allocator",
1345 "//base/third_party/dynamic_annotations", 1359 "//base/third_party/dynamic_annotations",
1346 "//crypto", 1360 "//crypto",
1347 "//crypto:platform", 1361 "//crypto:platform",
1348 "//crypto:test_support", 1362 "//crypto:test_support",
1349 "//net/base/registry_controlled_domains", 1363 "//net/base/registry_controlled_domains",
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 if (enable_websockets) { 1687 if (enable_websockets) {
1674 sources += [ "websockets/websocket_frame_perftest.cc" ] 1688 sources += [ "websockets/websocket_frame_perftest.cc" ]
1675 } 1689 }
1676 1690
1677 if (use_v8_in_net) { 1691 if (use_v8_in_net) {
1678 deps += [ ":net_with_v8" ] 1692 deps += [ ":net_with_v8" ]
1679 } else { 1693 } else {
1680 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1694 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1681 } 1695 }
1682 } 1696 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698