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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 deps = [ | 1341 deps = [ |
1342 ":net", | 1342 ":net", |
1343 ":simple_quic_tools", | 1343 ":simple_quic_tools", |
1344 "//base", | 1344 "//base", |
1345 "//build/config/sanitizers:deps", | 1345 "//build/config/sanitizers:deps", |
1346 "//build/win:default_exe_manifest", | 1346 "//build/win:default_exe_manifest", |
1347 "//third_party/boringssl", | 1347 "//third_party/boringssl", |
1348 "//third_party/protobuf:protobuf_lite", | 1348 "//third_party/protobuf:protobuf_lite", |
1349 ] | 1349 ] |
1350 } | 1350 } |
| 1351 executable("crypto_message_printer") { |
| 1352 sources = [ |
| 1353 "tools/quic/crypto_message_printer_bin.cc", |
| 1354 ] |
| 1355 deps = [ |
| 1356 ":net", |
| 1357 "//base", |
| 1358 "//build/config/sanitizers:deps", |
| 1359 "//build/win:default_exe_manifest", |
| 1360 ] |
| 1361 } |
1351 } | 1362 } |
1352 | 1363 |
1353 bundle_data("net_unittests_bundle_data") { | 1364 bundle_data("net_unittests_bundle_data") { |
1354 testonly = true | 1365 testonly = true |
1355 sources = gypi_values.net_unittests_data_sources | 1366 sources = gypi_values.net_unittests_data_sources |
1356 outputs = [ | 1367 outputs = [ |
1357 "{{bundle_resources_dir}}/" + | 1368 "{{bundle_resources_dir}}/" + |
1358 "{{source_root_relative_dir}}/{{source_file_part}}", | 1369 "{{source_root_relative_dir}}/{{source_file_part}}", |
1359 ] | 1370 ] |
1360 } | 1371 } |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 "url_request/url_request_fuzzer.cc", | 2024 "url_request/url_request_fuzzer.cc", |
2014 ] | 2025 ] |
2015 deps = [ | 2026 deps = [ |
2016 ":net_fuzzer_test_support", | 2027 ":net_fuzzer_test_support", |
2017 ":test_support", | 2028 ":test_support", |
2018 "//base", | 2029 "//base", |
2019 "//net", | 2030 "//net", |
2020 ] | 2031 ] |
2021 dict = "data/http/http.dict" | 2032 dict = "data/http/http.dict" |
2022 } | 2033 } |
OLD | NEW |