| 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 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 deps = [ | 1069 deps = [ |
| 1070 "//base", | 1070 "//base", |
| 1071 "//base:i18n", | 1071 "//base:i18n", |
| 1072 "//build/config/sanitizers:deps", | 1072 "//build/config/sanitizers:deps", |
| 1073 "//net/tools/tld_cleanup", | 1073 "//net/tools/tld_cleanup", |
| 1074 ] | 1074 ] |
| 1075 } | 1075 } |
| 1076 } | 1076 } |
| 1077 | 1077 |
| 1078 if (is_linux) { | 1078 if (is_linux) { |
| 1079 executable("cachetool") { |
| 1080 testonly = true |
| 1081 sources = [ |
| 1082 "tools/cachetool/cachetool.cc", |
| 1083 ] |
| 1084 deps = [ |
| 1085 ":net", |
| 1086 ":test_support", |
| 1087 "//base", |
| 1088 ] |
| 1089 } |
| 1090 |
| 1091 executable("content_decoder_tool") { |
| 1092 testonly = true |
| 1093 sources = [ |
| 1094 "filter/mock_filter_context.cc", |
| 1095 "filter/mock_filter_context.h", |
| 1096 "tools/content_decoder_tool/content_decoder_tool.cc", |
| 1097 ] |
| 1098 deps = [ |
| 1099 ":net", |
| 1100 ":test_support", |
| 1101 "//base", |
| 1102 "//url", |
| 1103 ] |
| 1104 } |
| 1105 |
| 1079 static_library("epoll_server") { | 1106 static_library("epoll_server") { |
| 1080 sources = [ | 1107 sources = [ |
| 1081 "tools/epoll_server/epoll_server.cc", | 1108 "tools/epoll_server/epoll_server.cc", |
| 1082 "tools/epoll_server/epoll_server.h", | 1109 "tools/epoll_server/epoll_server.h", |
| 1083 ] | 1110 ] |
| 1084 deps = [ | 1111 deps = [ |
| 1085 ":net", | 1112 ":net", |
| 1086 "//base", | 1113 "//base", |
| 1087 ] | 1114 ] |
| 1088 } | 1115 } |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1944 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1918 sources = [ | 1945 sources = [ |
| 1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1946 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1920 ] | 1947 ] |
| 1921 deps = [ | 1948 deps = [ |
| 1922 ":net_fuzzer_test_support", | 1949 ":net_fuzzer_test_support", |
| 1923 "//base", | 1950 "//base", |
| 1924 "//net", | 1951 "//net", |
| 1925 ] | 1952 ] |
| 1926 } | 1953 } |
| OLD | NEW |