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

Side by Side Diff: net/BUILD.gn

Issue 2101303005: CertVerifyProcMac: Add Keychain re-ordering hack, check CRLsets in path pruning loop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review changes and url_request_unittest fixes Created 4 years, 5 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/cert/cert_verify_proc_mac.cc » ('j') | net/cert/cert_verify_proc_mac.cc » ('J')
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 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after
1463 ":epoll_quic_tools", 1463 ":epoll_quic_tools",
1464 ":epoll_server", 1464 ":epoll_server",
1465 ":flip_in_mem_edsm_server_base", 1465 ":flip_in_mem_edsm_server_base",
1466 ] 1466 ]
1467 } 1467 }
1468 1468
1469 if (is_mac || is_ios) { 1469 if (is_mac || is_ios) {
1470 sources += gypi_values.net_base_test_mac_ios_sources 1470 sources += gypi_values.net_base_test_mac_ios_sources
1471 } 1471 }
1472 1472
1473 if (is_mac) {
1474 libs = [ "Security.framework" ]
Ryan Sleevi 2016/08/12 19:50:17 I thought we also needed to add Foundation.framewo
mattm 2016/08/16 01:41:34 I think this is okay since the cert_verify_proc_un
1475 }
1476
1473 if (is_chromeos) { 1477 if (is_chromeos) {
1474 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] 1478 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1475 } 1479 }
1476 1480
1477 if (v8_use_external_startup_data) { 1481 if (v8_use_external_startup_data) {
1478 deps += [ "//gin" ] 1482 deps += [ "//gin" ]
1479 } 1483 }
1480 1484
1481 if (!use_nss_certs) { 1485 if (!use_nss_certs) {
1482 sources -= [ 1486 sources -= [
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
2068 "url_request/url_request_fuzzer.cc", 2072 "url_request/url_request_fuzzer.cc",
2069 ] 2073 ]
2070 deps = [ 2074 deps = [
2071 ":net_fuzzer_test_support", 2075 ":net_fuzzer_test_support",
2072 ":test_support", 2076 ":test_support",
2073 "//base", 2077 "//base",
2074 "//net", 2078 "//net",
2075 ] 2079 ]
2076 dict = "data/http/http.dict" 2080 dict = "data/http/http.dict"
2077 } 2081 }
OLDNEW
« no previous file with comments | « no previous file | net/cert/cert_verify_proc_mac.cc » ('j') | net/cert/cert_verify_proc_mac.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698