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

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: Rebase to fix patch errors on try bots. 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 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1271 "tools/quic/synchronous_host_resolver.h", 1271 "tools/quic/synchronous_host_resolver.h",
1272 ] 1272 ]
1273 deps = [ 1273 deps = [
1274 ":net", 1274 ":net",
1275 "//base", 1275 "//base",
1276 "//base/third_party/dynamic_annotations", 1276 "//base/third_party/dynamic_annotations",
1277 "//url", 1277 "//url",
1278 ] 1278 ]
1279 } 1279 }
1280 1280
1281 source_set("swr_domain_matcher") {
eroman 2015/11/06 23:35:50 this name isn't really congruent with the filename
1282 sources = [
1283 "base/swr_histogram_domains/swr_histogram_domains.cc",
1284 "base/swr_histogram_domains/swr_histogram_domains.h",
1285 ]
1286 deps = [
1287 ":net",
1288 "//base",
1289 "//net/base/swr_histogram_domains",
eroman 2015/11/06 23:35:50 This doesn't show up in codesearch for me, where i
1290 ]
1291 configs += net_shared_configs
1292 }
1293
1281 if (!is_ios) { 1294 if (!is_ios) {
1282 executable("quic_client") { 1295 executable("quic_client") {
1283 sources = [ 1296 sources = [
1284 "tools/quic/quic_simple_client_bin.cc", 1297 "tools/quic/quic_simple_client_bin.cc",
1285 ] 1298 ]
1286 deps = [ 1299 deps = [
1287 ":net", 1300 ":net",
1288 ":simple_quic_tools", 1301 ":simple_quic_tools",
1289 "//base", 1302 "//base",
1290 "//build/config/sanitizers:deps", 1303 "//build/config/sanitizers:deps",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 "//build/config/compiler:no_size_t_to_int_warning", 1346 "//build/config/compiler:no_size_t_to_int_warning",
1334 ] 1347 ]
1335 defines = [] 1348 defines = []
1336 1349
1337 deps = [ 1350 deps = [
1338 ":balsa", 1351 ":balsa",
1339 ":extras", 1352 ":extras",
1340 ":http_server", 1353 ":http_server",
1341 ":net", 1354 ":net",
1342 ":simple_quic_tools", 1355 ":simple_quic_tools",
1356 ":swr_domain_matcher",
1343 ":test_support", 1357 ":test_support",
1344 "//base", 1358 "//base",
1345 "//base:i18n", 1359 "//base:i18n",
1346 "//base:prefs_test_support", 1360 "//base:prefs_test_support",
1347 "//base/allocator", 1361 "//base/allocator",
1348 "//base/third_party/dynamic_annotations", 1362 "//base/third_party/dynamic_annotations",
1349 "//crypto", 1363 "//crypto",
1350 "//crypto:platform", 1364 "//crypto:platform",
1351 "//crypto:test_support", 1365 "//crypto:test_support",
1352 "//net/base/registry_controlled_domains", 1366 "//net/base/registry_controlled_domains",
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 if (enable_websockets) { 1691 if (enable_websockets) {
1678 sources += [ "websockets/websocket_frame_perftest.cc" ] 1692 sources += [ "websockets/websocket_frame_perftest.cc" ]
1679 } 1693 }
1680 1694
1681 if (use_v8_in_net) { 1695 if (use_v8_in_net) {
1682 deps += [ ":net_with_v8" ] 1696 deps += [ ":net_with_v8" ]
1683 } else { 1697 } else {
1684 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1698 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1685 } 1699 }
1686 } 1700 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698