| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 if (use_gio) { | 176 if (use_gio) { |
| 177 deps += [ "//build/linux/libgio" ] | 177 deps += [ "//build/linux/libgio" ] |
| 178 } | 178 } |
| 179 | 179 |
| 180 if (!use_nss_certs) { | 180 if (!use_nss_certs) { |
| 181 sources -= [ | 181 sources -= [ |
| 182 "base/crypto_module_nss.cc", | 182 "base/crypto_module_nss.cc", |
| 183 "base/keygen_handler_nss.cc", | 183 "base/keygen_handler_nss.cc", |
| 184 "cert/cert_database_nss.cc", | 184 "cert/cert_database_nss.cc", |
| 185 "cert/internal/cert_issuer_source_nss.cc", |
| 186 "cert/internal/cert_issuer_source_nss.h", |
| 185 "cert/internal/trust_store_nss.cc", | 187 "cert/internal/trust_store_nss.cc", |
| 186 "cert/internal/trust_store_nss.h", | 188 "cert/internal/trust_store_nss.h", |
| 187 "cert/nss_cert_database.cc", | 189 "cert/nss_cert_database.cc", |
| 188 "cert/nss_cert_database.h", | 190 "cert/nss_cert_database.h", |
| 189 "cert/x509_certificate_nss.cc", | 191 "cert/x509_certificate_nss.cc", |
| 190 "ssl/client_cert_store_nss.cc", | 192 "ssl/client_cert_store_nss.cc", |
| 191 "ssl/client_cert_store_nss.h", | 193 "ssl/client_cert_store_nss.h", |
| 192 "third_party/mozilla_security_manager/nsKeygenHandler.cpp", | 194 "third_party/mozilla_security_manager/nsKeygenHandler.cpp", |
| 193 "third_party/mozilla_security_manager/nsKeygenHandler.h", | 195 "third_party/mozilla_security_manager/nsKeygenHandler.h", |
| 194 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", | 196 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| (...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 if (is_chromeos) { | 1320 if (is_chromeos) { |
| 1319 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1321 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 1320 } | 1322 } |
| 1321 | 1323 |
| 1322 if (v8_use_external_startup_data) { | 1324 if (v8_use_external_startup_data) { |
| 1323 deps += [ "//gin" ] | 1325 deps += [ "//gin" ] |
| 1324 } | 1326 } |
| 1325 | 1327 |
| 1326 if (!use_nss_certs) { | 1328 if (!use_nss_certs) { |
| 1327 sources -= [ | 1329 sources -= [ |
| 1330 "cert/internal/cert_issuer_source_nss_unittest.cc", |
| 1328 "cert/internal/trust_store_nss_unittest.cc", | 1331 "cert/internal/trust_store_nss_unittest.cc", |
| 1329 "cert/nss_cert_database_unittest.cc", | 1332 "cert/nss_cert_database_unittest.cc", |
| 1330 "ssl/client_cert_store_nss_unittest.cc", | 1333 "ssl/client_cert_store_nss_unittest.cc", |
| 1331 ] | 1334 ] |
| 1332 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1335 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
| 1333 sources -= [ | 1336 sources -= [ |
| 1334 "cert/nss_cert_database_chromeos_unittest.cc", | 1337 "cert/nss_cert_database_chromeos_unittest.cc", |
| 1335 "cert/nss_profile_filter_chromeos_unittest.cc", | 1338 "cert/nss_profile_filter_chromeos_unittest.cc", |
| 1336 ] | 1339 ] |
| 1337 } | 1340 } |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2050 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2053 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2051 ] | 2054 ] |
| 2052 deps = [ | 2055 deps = [ |
| 2053 ":net_fuzzer_test_support", | 2056 ":net_fuzzer_test_support", |
| 2054 "//base", | 2057 "//base", |
| 2055 "//net", | 2058 "//net", |
| 2056 "//url", | 2059 "//url", |
| 2057 ] | 2060 ] |
| 2058 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2061 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2059 } | 2062 } |
| OLD | NEW |