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

Side by Side Diff: net/BUILD.gn

Issue 2421333002: Protobuf for Traffic Annotation and first use by a URLFetcher. (Closed)
Patch Set: Traffic annotation moved to net public deps Created 3 years, 10 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
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 ":net_resources", 351 ":net_resources",
352 "//base", 352 "//base",
353 "//net/base/registry_controlled_domains", 353 "//net/base/registry_controlled_domains",
354 "//net/data/ssl/wosign:wosign_domains", 354 "//net/data/ssl/wosign:wosign_domains",
355 "//third_party/protobuf:protobuf_lite", 355 "//third_party/protobuf:protobuf_lite",
356 "//url:url_features", 356 "//url:url_features",
357 ] 357 ]
358 358
359 public_deps = [ 359 public_deps = [
360 ":net_quic_proto", 360 ":net_quic_proto",
361 ":traffic_annotation",
361 "//crypto", 362 "//crypto",
362 "//crypto:platform", 363 "//crypto:platform",
363 ] 364 ]
364 365
365 if (!is_nacl) { 366 if (!is_nacl) {
366 sources += [ 367 sources += [
367 "android/cellular_signal_strength.cc", 368 "android/cellular_signal_strength.cc",
368 "android/cellular_signal_strength.h", 369 "android/cellular_signal_strength.h",
369 "android/cert_verify_result_android.cc", 370 "android/cert_verify_result_android.cc",
370 "android/cert_verify_result_android.h", 371 "android/cert_verify_result_android.h",
(...skipping 2597 matching lines...) Expand 10 before | Expand all | Expand 10 after
2968 "tools/quic/synchronous_host_resolver.h", 2969 "tools/quic/synchronous_host_resolver.h",
2969 ] 2970 ]
2970 deps = [ 2971 deps = [
2971 ":net", 2972 ":net",
2972 "//base", 2973 "//base",
2973 "//base/third_party/dynamic_annotations", 2974 "//base/third_party/dynamic_annotations",
2974 "//url", 2975 "//url",
2975 ] 2976 ]
2976 } 2977 }
2977 2978
2979 source_set("traffic_annotation") {
2980 sources = [
2981 "traffic_annotation/network_traffic_annotation.h",
2982 "traffic_annotation/network_traffic_annotation_test_helper.h",
asanka 2017/02/08 04:37:16 Can test_helper be moved to :test_support ?
Ramin Halavati 2017/02/08 10:09:57 Done.
2983 ]
2984 deps = []
2985 }
2986
2978 if (!is_ios) { 2987 if (!is_ios) {
2979 executable("quic_client") { 2988 executable("quic_client") {
2980 sources = [ 2989 sources = [
2981 "tools/quic/quic_simple_client_bin.cc", 2990 "tools/quic/quic_simple_client_bin.cc",
2982 ] 2991 ]
2983 deps = [ 2992 deps = [
2984 ":net", 2993 ":net",
2985 ":simple_quic_tools", 2994 ":simple_quic_tools",
2986 "//base", 2995 "//base",
2987 "//build/config/sanitizers:deps", 2996 "//build/config/sanitizers:deps",
(...skipping 2703 matching lines...) Expand 10 before | Expand all | Expand 10 after
5691 "tools/transport_security_state_generator/trie/trie_writer.cc", 5700 "tools/transport_security_state_generator/trie/trie_writer.cc",
5692 "tools/transport_security_state_generator/trie/trie_writer.h", 5701 "tools/transport_security_state_generator/trie/trie_writer.h",
5693 ] 5702 ]
5694 deps = [ 5703 deps = [
5695 "//base", 5704 "//base",
5696 "//crypto", 5705 "//crypto",
5697 "//third_party/boringssl", 5706 "//third_party/boringssl",
5698 ] 5707 ]
5699 } 5708 }
5700 } 5709 }
OLDNEW
« no previous file with comments | « components/spellcheck/browser/spelling_service_client.cc ('k') | net/traffic_annotation/network_traffic_annotation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698