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

Side by Side Diff: net/BUILD.gn

Issue 1982823002: Add a command line tool for printing QUIC crypto handshake messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: include newly added file Created 4 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 | « no previous file | net/net.gyp » ('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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ":simple_quic_tools",
1358 "//base",
1359 "//build/config/sanitizers:deps",
1360 "//build/win:default_exe_manifest",
1361 "//third_party/boringssl",
1362 "//third_party/protobuf:protobuf_lite",
1363 ]
1364 }
1351 } 1365 }
1352 1366
1353 bundle_data("net_unittests_bundle_data") { 1367 bundle_data("net_unittests_bundle_data") {
1354 testonly = true 1368 testonly = true
1355 sources = gypi_values.net_unittests_data_sources 1369 sources = gypi_values.net_unittests_data_sources
1356 outputs = [ 1370 outputs = [
1357 "{{bundle_resources_dir}}/" + 1371 "{{bundle_resources_dir}}/" +
1358 "{{source_root_relative_dir}}/{{source_file_part}}", 1372 "{{source_root_relative_dir}}/{{source_file_part}}",
1359 ] 1373 ]
1360 } 1374 }
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
2013 "url_request/url_request_fuzzer.cc", 2027 "url_request/url_request_fuzzer.cc",
2014 ] 2028 ]
2015 deps = [ 2029 deps = [
2016 ":net_fuzzer_test_support", 2030 ":net_fuzzer_test_support",
2017 ":test_support", 2031 ":test_support",
2018 "//base", 2032 "//base",
2019 "//net", 2033 "//net",
2020 ] 2034 ]
2021 dict = "data/http/http.dict" 2035 dict = "data/http/http.dict"
2022 } 2036 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698