| 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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 | 816 |
| 817 if (!is_ios && !is_android) { | 817 if (!is_ios && !is_android) { |
| 818 executable("cert_verify_tool") { | 818 executable("cert_verify_tool") { |
| 819 testonly = true | 819 testonly = true |
| 820 sources = [ | 820 sources = [ |
| 821 "tools/cert_verify_tool/cert_verify_tool.cc", | 821 "tools/cert_verify_tool/cert_verify_tool.cc", |
| 822 "tools/cert_verify_tool/cert_verify_tool_util.cc", | 822 "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 823 "tools/cert_verify_tool/cert_verify_tool_util.h", | 823 "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 824 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", | 824 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 825 "tools/cert_verify_tool/verify_using_cert_verify_proc.h", | 825 "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
| 826 "tools/cert_verify_tool/verify_using_path_builder.cc", |
| 827 "tools/cert_verify_tool/verify_using_path_builder.h", |
| 826 ] | 828 ] |
| 827 | 829 |
| 828 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 830 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 829 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 831 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 830 deps = [ | 832 deps = [ |
| 831 ":net", | 833 ":net", |
| 832 ":test_support", | 834 ":test_support", |
| 833 "//base", | 835 "//base", |
| 834 "//build/config/sanitizers:deps", | 836 "//build/config/sanitizers:deps", |
| 835 "//build/win:default_exe_manifest", | 837 "//build/win:default_exe_manifest", |
| (...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2079 "url_request/url_request_fuzzer.cc", | 2081 "url_request/url_request_fuzzer.cc", |
| 2080 ] | 2082 ] |
| 2081 deps = [ | 2083 deps = [ |
| 2082 ":net_fuzzer_test_support", | 2084 ":net_fuzzer_test_support", |
| 2083 ":test_support", | 2085 ":test_support", |
| 2084 "//base", | 2086 "//base", |
| 2085 "//net", | 2087 "//net", |
| 2086 ] | 2088 ] |
| 2087 dict = "data/http/http.dict" | 2089 dict = "data/http/http.dict" |
| 2088 } | 2090 } |
| OLD | NEW |