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 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1639 "url_request/view_cache_helper.cc", | 1639 "url_request/view_cache_helper.cc", |
1640 "url_request/view_cache_helper.h", | 1640 "url_request/view_cache_helper.h", |
1641 "url_request/websocket_handshake_userdata_key.cc", | 1641 "url_request/websocket_handshake_userdata_key.cc", |
1642 "url_request/websocket_handshake_userdata_key.h", | 1642 "url_request/websocket_handshake_userdata_key.h", |
1643 "websockets/websocket_handshake_request_info.h", | 1643 "websockets/websocket_handshake_request_info.h", |
1644 "websockets/websocket_handshake_response_info.h", | 1644 "websockets/websocket_handshake_response_info.h", |
1645 "websockets/websocket_handshake_stream_base.h", | 1645 "websockets/websocket_handshake_stream_base.h", |
1646 "websockets/websocket_stream.h", | 1646 "websockets/websocket_stream.h", |
1647 ] | 1647 ] |
1648 deps += [ | 1648 deps += [ |
| 1649 ":traffic_annotation", |
1649 "//base/third_party/dynamic_annotations", | 1650 "//base/third_party/dynamic_annotations", |
1650 "//sdch", | 1651 "//sdch", |
1651 "//third_party/zlib", | 1652 "//third_party/zlib", |
1652 ] | 1653 ] |
1653 | 1654 |
1654 if (!use_kerberos) { | 1655 if (!use_kerberos) { |
1655 sources -= [ | 1656 sources -= [ |
1656 "http/http_auth_handler_negotiate.cc", | 1657 "http/http_auth_handler_negotiate.cc", |
1657 "http/http_auth_handler_negotiate.h", | 1658 "http/http_auth_handler_negotiate.h", |
1658 ] | 1659 ] |
(...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2971 "tools/quic/synchronous_host_resolver.h", | 2972 "tools/quic/synchronous_host_resolver.h", |
2972 ] | 2973 ] |
2973 deps = [ | 2974 deps = [ |
2974 ":net", | 2975 ":net", |
2975 "//base", | 2976 "//base", |
2976 "//base/third_party/dynamic_annotations", | 2977 "//base/third_party/dynamic_annotations", |
2977 "//url", | 2978 "//url", |
2978 ] | 2979 ] |
2979 } | 2980 } |
2980 | 2981 |
| 2982 source_set("traffic_annotation") { |
| 2983 sources = [ |
| 2984 "net/traffic_annotation/network_traffic_annotation.h", |
| 2985 ] |
| 2986 deps = [] |
| 2987 } |
| 2988 |
2981 if (!is_ios) { | 2989 if (!is_ios) { |
2982 executable("quic_client") { | 2990 executable("quic_client") { |
2983 sources = [ | 2991 sources = [ |
2984 "tools/quic/quic_simple_client_bin.cc", | 2992 "tools/quic/quic_simple_client_bin.cc", |
2985 ] | 2993 ] |
2986 deps = [ | 2994 deps = [ |
2987 ":net", | 2995 ":net", |
2988 ":simple_quic_tools", | 2996 ":simple_quic_tools", |
2989 "//base", | 2997 "//base", |
2990 "//build/config/sanitizers:deps", | 2998 "//build/config/sanitizers:deps", |
(...skipping 2685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5676 "tools/transport_security_state_generator/trie/trie_writer.cc", | 5684 "tools/transport_security_state_generator/trie/trie_writer.cc", |
5677 "tools/transport_security_state_generator/trie/trie_writer.h", | 5685 "tools/transport_security_state_generator/trie/trie_writer.h", |
5678 ] | 5686 ] |
5679 deps = [ | 5687 deps = [ |
5680 "//base", | 5688 "//base", |
5681 "//crypto", | 5689 "//crypto", |
5682 "//third_party/boringssl", | 5690 "//third_party/boringssl", |
5683 ] | 5691 ] |
5684 } | 5692 } |
5685 } | 5693 } |
OLD | NEW |