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

Side by Side Diff: net/BUILD.gn

Issue 2716393002: Deprecate hpack_table_size flag, remove dead code. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « BUILD.gn ('k') | net/spdy/fuzzing/hpack_fuzz_mutator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2681 matching lines...) Expand 10 before | Expand all | Expand 10 after
2692 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2692 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2693 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2693 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2694 deps = [ 2694 deps = [
2695 ":net", 2695 ":net",
2696 "//base", 2696 "//base",
2697 "//build/config/sanitizers:deps", 2697 "//build/config/sanitizers:deps",
2698 "//build/win:default_exe_manifest", 2698 "//build/win:default_exe_manifest",
2699 ] 2699 ]
2700 } 2700 }
2701 2701
2702 executable("hpack_fuzz_mutator") {
2703 testonly = true
2704 sources = [
2705 "spdy/fuzzing/hpack_fuzz_mutator.cc",
2706 ]
2707
2708 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2709 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2710 deps = [
2711 ":net",
2712 "//base",
2713 "//build/config/sanitizers:deps",
2714 "//build/win:default_exe_manifest",
2715 ]
2716 }
2717
2718 executable("hpack_fuzz_wrapper") {
2719 testonly = true
2720 sources = [
2721 "spdy/fuzzing/hpack_fuzz_wrapper.cc",
2722 ]
2723
2724 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2725 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2726 deps = [
2727 ":net",
2728 "//base",
2729 "//build/config/sanitizers:deps",
2730 "//build/win:default_exe_manifest",
2731 ]
2732 }
2733
2734 if (use_v8_in_net) { 2702 if (use_v8_in_net) {
2735 executable("net_watcher") { 2703 executable("net_watcher") {
2736 testonly = true 2704 testonly = true
2737 sources = [ 2705 sources = [
2738 "tools/net_watcher/net_watcher.cc", 2706 "tools/net_watcher/net_watcher.cc",
2739 ] 2707 ]
2740 deps = [ 2708 deps = [
2741 ":net", 2709 ":net",
2742 ":net_with_v8", 2710 ":net_with_v8",
2743 "//base", 2711 "//base",
(...skipping 2990 matching lines...) Expand 10 before | Expand all | Expand 10 after
5734 "tools/transport_security_state_generator/trie/trie_writer.cc", 5702 "tools/transport_security_state_generator/trie/trie_writer.cc",
5735 "tools/transport_security_state_generator/trie/trie_writer.h", 5703 "tools/transport_security_state_generator/trie/trie_writer.h",
5736 ] 5704 ]
5737 deps = [ 5705 deps = [
5738 "//base", 5706 "//base",
5739 "//crypto", 5707 "//crypto",
5740 "//third_party/boringssl", 5708 "//third_party/boringssl",
5741 ] 5709 ]
5742 } 5710 }
5743 } 5711 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | net/spdy/fuzzing/hpack_fuzz_mutator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698