| OLD | NEW |
| 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 Loading... |
| 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") { |
| 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 Loading... |
| 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 } |
| OLD | NEW |