| 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 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 if (is_chromeos) { | 1393 if (is_chromeos) { |
| 1392 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1394 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 1393 } | 1395 } |
| 1394 | 1396 |
| 1395 if (v8_use_external_startup_data) { | 1397 if (v8_use_external_startup_data) { |
| 1396 deps += [ "//gin" ] | 1398 deps += [ "//gin" ] |
| 1397 } | 1399 } |
| 1398 | 1400 |
| 1399 if (!use_nss_certs) { | 1401 if (!use_nss_certs) { |
| 1400 sources -= [ | 1402 sources -= [ |
| 1403 "cert/internal/trust_store_nss_unittest.cc", |
| 1401 "cert/nss_cert_database_unittest.cc", | 1404 "cert/nss_cert_database_unittest.cc", |
| 1402 "ssl/client_cert_store_nss_unittest.cc", | 1405 "ssl/client_cert_store_nss_unittest.cc", |
| 1403 ] | 1406 ] |
| 1404 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1407 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
| 1405 sources -= [ | 1408 sources -= [ |
| 1406 "cert/nss_cert_database_chromeos_unittest.cc", | 1409 "cert/nss_cert_database_chromeos_unittest.cc", |
| 1407 "cert/nss_profile_filter_chromeos_unittest.cc", | 1410 "cert/nss_profile_filter_chromeos_unittest.cc", |
| 1408 ] | 1411 ] |
| 1409 } | 1412 } |
| 1410 } | 1413 } |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1995 "url_request/url_request_fuzzer.cc", | 1998 "url_request/url_request_fuzzer.cc", |
| 1996 ] | 1999 ] |
| 1997 deps = [ | 2000 deps = [ |
| 1998 ":net_fuzzer_test_support", | 2001 ":net_fuzzer_test_support", |
| 1999 ":test_support", | 2002 ":test_support", |
| 2000 "//base", | 2003 "//base", |
| 2001 "//net", | 2004 "//net", |
| 2002 ] | 2005 ] |
| 2003 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2006 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2004 } | 2007 } |
| OLD | NEW |