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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 | 197 |
198 if (use_gio) { | 198 if (use_gio) { |
199 deps += [ "//build/linux/libgio" ] | 199 deps += [ "//build/linux/libgio" ] |
200 } | 200 } |
201 | 201 |
202 if (!use_nss_certs) { | 202 if (!use_nss_certs) { |
203 sources -= [ | 203 sources -= [ |
204 "base/crypto_module_nss.cc", | 204 "base/crypto_module_nss.cc", |
205 "base/keygen_handler_nss.cc", | 205 "base/keygen_handler_nss.cc", |
206 "cert/cert_database_nss.cc", | 206 "cert/cert_database_nss.cc", |
| 207 "cert/internal/trust_store_nss.cc", |
| 208 "cert/internal/trust_store_nss.h", |
207 "cert/nss_cert_database.cc", | 209 "cert/nss_cert_database.cc", |
208 "cert/nss_cert_database.h", | 210 "cert/nss_cert_database.h", |
209 "cert/x509_certificate_nss.cc", | 211 "cert/x509_certificate_nss.cc", |
210 "ssl/client_cert_store_nss.cc", | 212 "ssl/client_cert_store_nss.cc", |
211 "ssl/client_cert_store_nss.h", | 213 "ssl/client_cert_store_nss.h", |
212 "third_party/mozilla_security_manager/nsKeygenHandler.cpp", | 214 "third_party/mozilla_security_manager/nsKeygenHandler.cpp", |
213 "third_party/mozilla_security_manager/nsKeygenHandler.h", | 215 "third_party/mozilla_security_manager/nsKeygenHandler.h", |
214 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", | 216 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
215 "third_party/mozilla_security_manager/nsNSSCertificateDB.h", | 217 "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
216 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", | 218 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 if (is_chromeos) { | 1407 if (is_chromeos) { |
1406 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1408 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
1407 } | 1409 } |
1408 | 1410 |
1409 if (v8_use_external_startup_data) { | 1411 if (v8_use_external_startup_data) { |
1410 deps += [ "//gin" ] | 1412 deps += [ "//gin" ] |
1411 } | 1413 } |
1412 | 1414 |
1413 if (!use_nss_certs) { | 1415 if (!use_nss_certs) { |
1414 sources -= [ | 1416 sources -= [ |
| 1417 "cert/internal/trust_store_nss_unittest.cc", |
1415 "cert/nss_cert_database_unittest.cc", | 1418 "cert/nss_cert_database_unittest.cc", |
1416 "ssl/client_cert_store_nss_unittest.cc", | 1419 "ssl/client_cert_store_nss_unittest.cc", |
1417 ] | 1420 ] |
1418 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1421 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
1419 sources -= [ | 1422 sources -= [ |
1420 "cert/nss_cert_database_chromeos_unittest.cc", | 1423 "cert/nss_cert_database_chromeos_unittest.cc", |
1421 "cert/nss_profile_filter_chromeos_unittest.cc", | 1424 "cert/nss_profile_filter_chromeos_unittest.cc", |
1422 ] | 1425 ] |
1423 } | 1426 } |
1424 } | 1427 } |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2034 "url_request/url_request_fuzzer.cc", | 2037 "url_request/url_request_fuzzer.cc", |
2035 ] | 2038 ] |
2036 deps = [ | 2039 deps = [ |
2037 ":net_fuzzer_test_support", | 2040 ":net_fuzzer_test_support", |
2038 ":test_support", | 2041 ":test_support", |
2039 "//base", | 2042 "//base", |
2040 "//net", | 2043 "//net", |
2041 ] | 2044 ] |
2042 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2045 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
2043 } | 2046 } |
OLD | NEW |