| 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 2894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2905 if (is_linux || is_mac) { | 2905 if (is_linux || is_mac) { |
| 2906 executable("cachetool") { | 2906 executable("cachetool") { |
| 2907 testonly = true | 2907 testonly = true |
| 2908 sources = [ | 2908 sources = [ |
| 2909 "tools/cachetool/cachetool.cc", | 2909 "tools/cachetool/cachetool.cc", |
| 2910 ] | 2910 ] |
| 2911 deps = [ | 2911 deps = [ |
| 2912 ":net", | 2912 ":net", |
| 2913 ":test_support", | 2913 ":test_support", |
| 2914 "//base", | 2914 "//base", |
| 2915 "//build/config:exe_and_shlib_deps", |
| 2915 ] | 2916 ] |
| 2916 } | 2917 } |
| 2917 | 2918 |
| 2918 executable("content_decoder_tool") { | 2919 executable("content_decoder_tool") { |
| 2919 testonly = true | 2920 testonly = true |
| 2920 sources = [ | 2921 sources = [ |
| 2921 "tools/content_decoder_tool/content_decoder_tool.cc", | 2922 "tools/content_decoder_tool/content_decoder_tool.cc", |
| 2922 "tools/content_decoder_tool/content_decoder_tool.h", | 2923 "tools/content_decoder_tool/content_decoder_tool.h", |
| 2923 "tools/content_decoder_tool/content_decoder_tool_bin.cc", | 2924 "tools/content_decoder_tool/content_decoder_tool_bin.cc", |
| 2924 ] | 2925 ] |
| 2925 deps = [ | 2926 deps = [ |
| 2926 ":net", | 2927 ":net", |
| 2927 ":test_support", | 2928 ":test_support", |
| 2928 "//base", | 2929 "//base", |
| 2930 "//build/config:exe_and_shlib_deps", |
| 2929 "//url", | 2931 "//url", |
| 2930 ] | 2932 ] |
| 2931 } | 2933 } |
| 2932 } | 2934 } |
| 2933 | 2935 |
| 2934 if (is_linux) { | 2936 if (is_linux) { |
| 2935 static_library("epoll_server") { | 2937 static_library("epoll_server") { |
| 2936 sources = [ | 2938 sources = [ |
| 2937 "tools/epoll_server/epoll_server.cc", | 2939 "tools/epoll_server/epoll_server.cc", |
| 2938 "tools/epoll_server/epoll_server.h", | 2940 "tools/epoll_server/epoll_server.h", |
| (...skipping 2999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5938 ] | 5940 ] |
| 5939 deps = [ | 5941 deps = [ |
| 5940 ":net_fuzzer_test_support", | 5942 ":net_fuzzer_test_support", |
| 5941 ":test_support", | 5943 ":test_support", |
| 5942 "//base", | 5944 "//base", |
| 5943 "//net", | 5945 "//net", |
| 5944 ] | 5946 ] |
| 5945 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5947 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5946 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5948 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5947 } | 5949 } |
| OLD | NEW |