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

Side by Side Diff: net/BUILD.gn

Issue 2892493002: Replace sanitizers:deps with exe_and_shlib_deps (Chromium repo only) (Closed)
Patch Set: Fix find/replace error in nacl Created 3 years, 7 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 | « mojo/android/BUILD.gn ('k') | net/tools/transport_security_state_generator/BUILD.gn » ('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 2177 matching lines...) Expand 10 before | Expand all | Expand 10 after
2188 "tools/dump_cache/dump_files.h", 2188 "tools/dump_cache/dump_files.h",
2189 ] 2189 ]
2190 2190
2191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2192 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2192 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2193 2193
2194 deps = [ 2194 deps = [
2195 ":net", 2195 ":net",
2196 ":test_support", 2196 ":test_support",
2197 "//base", 2197 "//base",
2198 "//build/config/sanitizers:deps", 2198 "//build/config:exe_and_shlib_deps",
2199 "//build/win:default_exe_manifest", 2199 "//build/win:default_exe_manifest",
2200 ] 2200 ]
2201 } 2201 }
2202 } 2202 }
2203 2203
2204 # This section can be updated from globbing rules using: 2204 # This section can be updated from globbing rules using:
2205 # python ./tools/update_ios_bundle_data.py 2205 # python ./tools/update_ios_bundle_data.py
2206 bundle_data("test_support_bundle_data") { 2206 bundle_data("test_support_bundle_data") {
2207 visibility = [ ":test_support" ] 2207 visibility = [ ":test_support" ]
2208 testonly = true 2208 testonly = true
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
2690 "tools/cert_verify_tool/verify_using_path_builder.cc", 2690 "tools/cert_verify_tool/verify_using_path_builder.cc",
2691 "tools/cert_verify_tool/verify_using_path_builder.h", 2691 "tools/cert_verify_tool/verify_using_path_builder.h",
2692 ] 2692 ]
2693 2693
2694 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2694 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2695 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2695 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2696 deps = [ 2696 deps = [
2697 ":net", 2697 ":net",
2698 ":test_support", 2698 ":test_support",
2699 "//base", 2699 "//base",
2700 "//build/config/sanitizers:deps", 2700 "//build/config:exe_and_shlib_deps",
2701 "//build/win:default_exe_manifest", 2701 "//build/win:default_exe_manifest",
2702 ] 2702 ]
2703 2703
2704 if (is_mac) { 2704 if (is_mac) {
2705 libs = [ "Security.framework" ] 2705 libs = [ "Security.framework" ]
2706 } 2706 }
2707 } 2707 }
2708 2708
2709 executable("crash_cache") { 2709 executable("crash_cache") {
2710 testonly = true 2710 testonly = true
2711 sources = [ 2711 sources = [
2712 "tools/crash_cache/crash_cache.cc", 2712 "tools/crash_cache/crash_cache.cc",
2713 ] 2713 ]
2714 2714
2715 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2715 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2716 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2716 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2717 deps = [ 2717 deps = [
2718 ":net", 2718 ":net",
2719 ":test_support", 2719 ":test_support",
2720 "//base", 2720 "//base",
2721 "//build/config/sanitizers:deps", 2721 "//build/config:exe_and_shlib_deps",
2722 "//build/win:default_exe_manifest", 2722 "//build/win:default_exe_manifest",
2723 ] 2723 ]
2724 } 2724 }
2725 2725
2726 executable("crl_set_dump") { 2726 executable("crl_set_dump") {
2727 testonly = true 2727 testonly = true
2728 sources = [ 2728 sources = [
2729 "tools/crl_set_dump/crl_set_dump.cc", 2729 "tools/crl_set_dump/crl_set_dump.cc",
2730 ] 2730 ]
2731 2731
2732 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2732 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2733 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2733 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2734 deps = [ 2734 deps = [
2735 ":net", 2735 ":net",
2736 "//base", 2736 "//base",
2737 "//build/config/sanitizers:deps", 2737 "//build/config:exe_and_shlib_deps",
2738 "//build/win:default_exe_manifest", 2738 "//build/win:default_exe_manifest",
2739 ] 2739 ]
2740 } 2740 }
2741 2741
2742 executable("dns_fuzz_stub") { 2742 executable("dns_fuzz_stub") {
2743 testonly = true 2743 testonly = true
2744 sources = [ 2744 sources = [
2745 "tools/dns_fuzz_stub/dns_fuzz_stub.cc", 2745 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2746 ] 2746 ]
2747 2747
2748 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2748 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2749 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2749 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2750 deps = [ 2750 deps = [
2751 ":net", 2751 ":net",
2752 "//base", 2752 "//base",
2753 "//build/config/sanitizers:deps", 2753 "//build/config:exe_and_shlib_deps",
2754 "//build/win:default_exe_manifest", 2754 "//build/win:default_exe_manifest",
2755 ] 2755 ]
2756 } 2756 }
2757 2757
2758 executable("gdig") { 2758 executable("gdig") {
2759 testonly = true 2759 testonly = true
2760 sources = [ 2760 sources = [
2761 "tools/gdig/file_net_log.cc", 2761 "tools/gdig/file_net_log.cc",
2762 "tools/gdig/file_net_log.h", 2762 "tools/gdig/file_net_log.h",
2763 "tools/gdig/gdig.cc", 2763 "tools/gdig/gdig.cc",
2764 ] 2764 ]
2765 deps = [ 2765 deps = [
2766 ":net", 2766 ":net",
2767 "//base", 2767 "//base",
2768 "//build/config/sanitizers:deps", 2768 "//build/config:exe_and_shlib_deps",
2769 "//build/win:default_exe_manifest", 2769 "//build/win:default_exe_manifest",
2770 ] 2770 ]
2771 } 2771 }
2772 2772
2773 executable("get_server_time") { 2773 executable("get_server_time") {
2774 testonly = true 2774 testonly = true
2775 sources = [ 2775 sources = [
2776 "tools/get_server_time/get_server_time.cc", 2776 "tools/get_server_time/get_server_time.cc",
2777 ] 2777 ]
2778 2778
2779 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2779 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2780 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2780 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2781 deps = [ 2781 deps = [
2782 ":net", 2782 ":net",
2783 "//base", 2783 "//base",
2784 "//base:i18n", 2784 "//base:i18n",
2785 "//build/config/sanitizers:deps", 2785 "//build/config:exe_and_shlib_deps",
2786 "//build/win:default_exe_manifest", 2786 "//build/win:default_exe_manifest",
2787 "//url", 2787 "//url",
2788 ] 2788 ]
2789 } 2789 }
2790 2790
2791 executable("hpack_example_generator") { 2791 executable("hpack_example_generator") {
2792 testonly = true 2792 testonly = true
2793 sources = [ 2793 sources = [
2794 "spdy/core/fuzzing/hpack_example_generator.cc", 2794 "spdy/core/fuzzing/hpack_example_generator.cc",
2795 ] 2795 ]
2796 2796
2797 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2797 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2798 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2798 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2799 deps = [ 2799 deps = [
2800 ":net", 2800 ":net",
2801 "//base", 2801 "//base",
2802 "//build/config/sanitizers:deps", 2802 "//build/config:exe_and_shlib_deps",
2803 "//build/win:default_exe_manifest", 2803 "//build/win:default_exe_manifest",
2804 ] 2804 ]
2805 } 2805 }
2806 2806
2807 if (use_v8_in_net) { 2807 if (use_v8_in_net) {
2808 executable("net_watcher") { 2808 executable("net_watcher") {
2809 testonly = true 2809 testonly = true
2810 sources = [ 2810 sources = [
2811 "tools/net_watcher/net_watcher.cc", 2811 "tools/net_watcher/net_watcher.cc",
2812 ] 2812 ]
2813 deps = [ 2813 deps = [
2814 ":net", 2814 ":net",
2815 ":net_with_v8", 2815 ":net_with_v8",
2816 "//base", 2816 "//base",
2817 "//build/config/sanitizers:deps", 2817 "//build/config:exe_and_shlib_deps",
2818 "//build/win:default_exe_manifest", 2818 "//build/win:default_exe_manifest",
2819 ] 2819 ]
2820 } 2820 }
2821 } 2821 }
2822 2822
2823 executable("run_testserver") { 2823 executable("run_testserver") {
2824 testonly = true 2824 testonly = true
2825 sources = [ 2825 sources = [
2826 "tools/testserver/run_testserver.cc", 2826 "tools/testserver/run_testserver.cc",
2827 ] 2827 ]
2828 deps = [ 2828 deps = [
2829 ":test_support", 2829 ":test_support",
2830 "//base", 2830 "//base",
2831 "//base/test:test_support", 2831 "//base/test:test_support",
2832 "//build/config/sanitizers:deps", 2832 "//build/config:exe_and_shlib_deps",
2833 "//build/win:default_exe_manifest", 2833 "//build/win:default_exe_manifest",
2834 "//testing/gtest", 2834 "//testing/gtest",
2835 ] 2835 ]
2836 } 2836 }
2837 2837
2838 executable("stress_cache") { 2838 executable("stress_cache") {
2839 testonly = true 2839 testonly = true
2840 sources = [ 2840 sources = [
2841 "tools/stress_cache/stress_cache.cc", 2841 "tools/stress_cache/stress_cache.cc",
2842 ] 2842 ]
2843 2843
2844 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2844 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2845 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2845 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2846 deps = [ 2846 deps = [
2847 ":net", 2847 ":net",
2848 ":test_support", 2848 ":test_support",
2849 "//base", 2849 "//base",
2850 "//build/config/sanitizers:deps", 2850 "//build/config:exe_and_shlib_deps",
2851 "//build/win:default_exe_manifest", 2851 "//build/win:default_exe_manifest",
2852 ] 2852 ]
2853 } 2853 }
2854 2854
2855 executable("tld_cleanup") { 2855 executable("tld_cleanup") {
2856 sources = [ 2856 sources = [
2857 "tools/tld_cleanup/tld_cleanup.cc", 2857 "tools/tld_cleanup/tld_cleanup.cc",
2858 ] 2858 ]
2859 2859
2860 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2860 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2861 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 2861 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2862 deps = [ 2862 deps = [
2863 "//base", 2863 "//base",
2864 "//base:i18n", 2864 "//base:i18n",
2865 "//build/config/sanitizers:deps", 2865 "//build/config:exe_and_shlib_deps",
2866 "//build/win:default_exe_manifest", 2866 "//build/win:default_exe_manifest",
2867 "//net/tools/tld_cleanup", 2867 "//net/tools/tld_cleanup",
2868 ] 2868 ]
2869 } 2869 }
2870 } 2870 }
2871 2871
2872 if (is_linux || is_mac) { 2872 if (is_linux || is_mac) {
2873 executable("cachetool") { 2873 executable("cachetool") {
2874 testonly = true 2874 testonly = true
2875 sources = [ 2875 sources = [
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
2946 executable("epoll_quic_client") { 2946 executable("epoll_quic_client") {
2947 sources = [ 2947 sources = [
2948 "tools/quic/quic_client_bin.cc", 2948 "tools/quic/quic_client_bin.cc",
2949 ] 2949 ]
2950 deps = [ 2950 deps = [
2951 ":epoll_quic_tools", 2951 ":epoll_quic_tools",
2952 ":epoll_server", 2952 ":epoll_server",
2953 ":net", 2953 ":net",
2954 ":simple_quic_tools", 2954 ":simple_quic_tools",
2955 "//base", 2955 "//base",
2956 "//build/config/sanitizers:deps", 2956 "//build/config:exe_and_shlib_deps",
2957 "//third_party/boringssl", 2957 "//third_party/boringssl",
2958 ] 2958 ]
2959 } 2959 }
2960 2960
2961 executable("epoll_quic_server") { 2961 executable("epoll_quic_server") {
2962 sources = [ 2962 sources = [
2963 "tools/quic/quic_server_bin.cc", 2963 "tools/quic/quic_server_bin.cc",
2964 ] 2964 ]
2965 deps = [ 2965 deps = [
2966 ":epoll_quic_tools", 2966 ":epoll_quic_tools",
2967 ":epoll_server", 2967 ":epoll_server",
2968 ":net", 2968 ":net",
2969 ":simple_quic_tools", 2969 ":simple_quic_tools",
2970 "//base", 2970 "//base",
2971 "//build/config/sanitizers:deps", 2971 "//build/config:exe_and_shlib_deps",
2972 "//third_party/boringssl", 2972 "//third_party/boringssl",
2973 ] 2973 ]
2974 } 2974 }
2975 } 2975 }
2976 2976
2977 if (is_android) { 2977 if (is_android) {
2978 generate_jni("net_jni_headers") { 2978 generate_jni("net_jni_headers") {
2979 sources = [ 2979 sources = [
2980 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java", 2980 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
2981 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", 2981 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
(...skipping 23 matching lines...) Expand all
3005 3005
3006 if (is_android || is_linux) { 3006 if (is_android || is_linux) {
3007 executable("disk_cache_memory_test") { 3007 executable("disk_cache_memory_test") {
3008 testonly = true 3008 testonly = true
3009 sources = [ 3009 sources = [
3010 "tools/disk_cache_memory_test/disk_cache_memory_test.cc", 3010 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3011 ] 3011 ]
3012 deps = [ 3012 deps = [
3013 ":net", 3013 ":net",
3014 "//base", 3014 "//base",
3015 "//build/config/sanitizers:deps", 3015 "//build/config:exe_and_shlib_deps",
3016 ] 3016 ]
3017 } 3017 }
3018 } 3018 }
3019 3019
3020 source_set("simple_quic_tools") { 3020 source_set("simple_quic_tools") {
3021 sources = [ 3021 sources = [
3022 "tools/quic/chlo_extractor.cc", 3022 "tools/quic/chlo_extractor.cc",
3023 "tools/quic/chlo_extractor.h", 3023 "tools/quic/chlo_extractor.h",
3024 "tools/quic/quic_client_base.cc", 3024 "tools/quic/quic_client_base.cc",
3025 "tools/quic/quic_client_base.h", 3025 "tools/quic/quic_client_base.h",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
3078 3078
3079 if (!is_ios) { 3079 if (!is_ios) {
3080 executable("quic_client") { 3080 executable("quic_client") {
3081 sources = [ 3081 sources = [
3082 "tools/quic/quic_simple_client_bin.cc", 3082 "tools/quic/quic_simple_client_bin.cc",
3083 ] 3083 ]
3084 deps = [ 3084 deps = [
3085 ":net", 3085 ":net",
3086 ":simple_quic_tools", 3086 ":simple_quic_tools",
3087 "//base", 3087 "//base",
3088 "//build/config/sanitizers:deps", 3088 "//build/config:exe_and_shlib_deps",
3089 "//build/win:default_exe_manifest", 3089 "//build/win:default_exe_manifest",
3090 "//url", 3090 "//url",
3091 ] 3091 ]
3092 } 3092 }
3093 executable("quic_server") { 3093 executable("quic_server") {
3094 sources = [ 3094 sources = [
3095 "tools/quic/quic_simple_server_bin.cc", 3095 "tools/quic/quic_simple_server_bin.cc",
3096 ] 3096 ]
3097 deps = [ 3097 deps = [
3098 ":net", 3098 ":net",
3099 ":simple_quic_tools", 3099 ":simple_quic_tools",
3100 "//base", 3100 "//base",
3101 "//build/config/sanitizers:deps", 3101 "//build/config:exe_and_shlib_deps",
3102 "//build/win:default_exe_manifest", 3102 "//build/win:default_exe_manifest",
3103 "//third_party/boringssl", 3103 "//third_party/boringssl",
3104 "//third_party/protobuf:protobuf_lite", 3104 "//third_party/protobuf:protobuf_lite",
3105 ] 3105 ]
3106 } 3106 }
3107 executable("quic_packet_printer") { 3107 executable("quic_packet_printer") {
3108 sources = [ 3108 sources = [
3109 "tools/quic/quic_packet_printer_bin.cc", 3109 "tools/quic/quic_packet_printer_bin.cc",
3110 ] 3110 ]
3111 deps = [ 3111 deps = [
3112 ":net", 3112 ":net",
3113 ":simple_quic_tools", 3113 ":simple_quic_tools",
3114 "//base", 3114 "//base",
3115 "//build/config/sanitizers:deps", 3115 "//build/config:exe_and_shlib_deps",
3116 "//build/win:default_exe_manifest", 3116 "//build/win:default_exe_manifest",
3117 "//third_party/boringssl", 3117 "//third_party/boringssl",
3118 "//third_party/protobuf:protobuf_lite", 3118 "//third_party/protobuf:protobuf_lite",
3119 ] 3119 ]
3120 } 3120 }
3121 executable("quic_reject_reason_decoder") { 3121 executable("quic_reject_reason_decoder") {
3122 sources = [ 3122 sources = [
3123 "tools/quic/quic_reject_reason_decoder_bin.cc", 3123 "tools/quic/quic_reject_reason_decoder_bin.cc",
3124 ] 3124 ]
3125 deps = [ 3125 deps = [
3126 ":net", 3126 ":net",
3127 ":simple_quic_tools", 3127 ":simple_quic_tools",
3128 "//base", 3128 "//base",
3129 "//build/config/sanitizers:deps", 3129 "//build/config:exe_and_shlib_deps",
3130 "//build/win:default_exe_manifest", 3130 "//build/win:default_exe_manifest",
3131 "//third_party/boringssl", 3131 "//third_party/boringssl",
3132 "//third_party/protobuf:protobuf_lite", 3132 "//third_party/protobuf:protobuf_lite",
3133 ] 3133 ]
3134 } 3134 }
3135 executable("crypto_message_printer") { 3135 executable("crypto_message_printer") {
3136 sources = [ 3136 sources = [
3137 "tools/quic/crypto_message_printer_bin.cc", 3137 "tools/quic/crypto_message_printer_bin.cc",
3138 ] 3138 ]
3139 deps = [ 3139 deps = [
3140 ":net", 3140 ":net",
3141 "//base", 3141 "//base",
3142 "//build/config/sanitizers:deps", 3142 "//build/config:exe_and_shlib_deps",
3143 "//build/win:default_exe_manifest", 3143 "//build/win:default_exe_manifest",
3144 ] 3144 ]
3145 } 3145 }
3146 } 3146 }
3147 3147
3148 # This section can be updated from globbing rules using: 3148 # This section can be updated from globbing rules using:
3149 # python ./tools/update_ios_bundle_data.py 3149 # python ./tools/update_ios_bundle_data.py
3150 bundle_data("net_unittests_bundle_data") { 3150 bundle_data("net_unittests_bundle_data") {
3151 testonly = true 3151 testonly = true
3152 sources = [ 3152 sources = [
(...skipping 2173 matching lines...) Expand 10 before | Expand all | Expand 10 after
5326 5326
5327 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 5327 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5328 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 5328 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
5329 deps = [ 5329 deps = [
5330 ":extras", 5330 ":extras",
5331 ":net", 5331 ":net",
5332 ":test_support", 5332 ":test_support",
5333 "//base", 5333 "//base",
5334 "//base:i18n", 5334 "//base:i18n",
5335 "//base/test:test_support_perf", 5335 "//base/test:test_support_perf",
5336 "//build/config/sanitizers:deps", 5336 "//build/config:exe_and_shlib_deps",
5337 "//build/win:default_exe_manifest", 5337 "//build/win:default_exe_manifest",
5338 "//testing/gtest", 5338 "//testing/gtest",
5339 "//url", 5339 "//url",
5340 ] 5340 ]
5341 5341
5342 if (enable_websockets) { 5342 if (enable_websockets) {
5343 sources += [ "websockets/websocket_frame_perftest.cc" ] 5343 sources += [ "websockets/websocket_frame_perftest.cc" ]
5344 } 5344 }
5345 5345
5346 # Some linker failures have been observed for this target on the Win64 5346 # Some linker failures have been observed for this target on the Win64
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
5893 ] 5893 ]
5894 deps = [ 5894 deps = [
5895 ":net_fuzzer_test_support", 5895 ":net_fuzzer_test_support",
5896 ":test_support", 5896 ":test_support",
5897 "//base", 5897 "//base",
5898 "//net", 5898 "//net",
5899 ] 5899 ]
5900 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5900 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5901 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5901 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5902 } 5902 }
OLDNEW
« no previous file with comments | « mojo/android/BUILD.gn ('k') | net/tools/transport_security_state_generator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698