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

Side by Side Diff: net/BUILD.gn

Issue 2421333002: Protobuf for Traffic Annotation and first use by a URLFetcher. (Closed)
Patch Set: All comments addressed. Created 3 years, 11 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 2946 matching lines...) Expand 10 before | Expand all | Expand 10 after
2957 "tools/quic/synchronous_host_resolver.h", 2957 "tools/quic/synchronous_host_resolver.h",
2958 ] 2958 ]
2959 deps = [ 2959 deps = [
2960 ":net", 2960 ":net",
2961 "//base", 2961 "//base",
2962 "//base/third_party/dynamic_annotations", 2962 "//base/third_party/dynamic_annotations",
2963 "//url", 2963 "//url",
2964 ] 2964 ]
2965 } 2965 }
2966 2966
2967 source_set("traffic_annotation_header") {
asanka 2017/01/26 20:59:27 why is this in a separate source set when url_fetc
Ramin Halavati 2017/01/27 07:48:58 I separated it so that tools that just use annotat
asanka 2017/01/27 16:58:00 Got it. Can you add :traffic_annotation_header (o
Ramin Halavati 2017/01/30 08:43:25 Done, renamed it to traffic_annotation and added i
2968 sources = [
2969 "net/traffic_annotation/network_traffic_annotation.h",
2970 ]
2971 deps = []
2972 }
2973
2967 if (!is_ios) { 2974 if (!is_ios) {
2968 executable("quic_client") { 2975 executable("quic_client") {
2969 sources = [ 2976 sources = [
2970 "tools/quic/quic_simple_client_bin.cc", 2977 "tools/quic/quic_simple_client_bin.cc",
2971 ] 2978 ]
2972 deps = [ 2979 deps = [
2973 ":net", 2980 ":net",
2974 ":simple_quic_tools", 2981 ":simple_quic_tools",
2975 "//base", 2982 "//base",
2976 "//build/config/sanitizers:deps", 2983 "//build/config/sanitizers:deps",
(...skipping 2667 matching lines...) Expand 10 before | Expand all | Expand 10 after
5644 "tools/domain_security_preload_generator/trie/trie_writer.cc", 5651 "tools/domain_security_preload_generator/trie/trie_writer.cc",
5645 "tools/domain_security_preload_generator/trie/trie_writer.h", 5652 "tools/domain_security_preload_generator/trie/trie_writer.h",
5646 ] 5653 ]
5647 deps = [ 5654 deps = [
5648 "//base", 5655 "//base",
5649 "//crypto", 5656 "//crypto",
5650 "//third_party/boringssl", 5657 "//third_party/boringssl",
5651 ] 5658 ]
5652 } 5659 }
5653 } 5660 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698