| 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 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 if (is_chromeos) { | 1400 if (is_chromeos) { |
| 1401 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1401 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 1402 } | 1402 } |
| 1403 | 1403 |
| 1404 if (v8_use_external_startup_data) { | 1404 if (v8_use_external_startup_data) { |
| 1405 deps += [ "//gin" ] | 1405 deps += [ "//gin" ] |
| 1406 } | 1406 } |
| 1407 | 1407 |
| 1408 if (!use_nss_certs) { | 1408 if (!use_nss_certs) { |
| 1409 sources -= [ | 1409 sources -= [ |
| 1410 "cert/internal/trust_store_nss_unittest.cc", |
| 1410 "cert/nss_cert_database_unittest.cc", | 1411 "cert/nss_cert_database_unittest.cc", |
| 1411 "ssl/client_cert_store_nss_unittest.cc", | 1412 "ssl/client_cert_store_nss_unittest.cc", |
| 1412 ] | 1413 ] |
| 1413 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1414 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
| 1414 sources -= [ | 1415 sources -= [ |
| 1415 "cert/nss_cert_database_chromeos_unittest.cc", | 1416 "cert/nss_cert_database_chromeos_unittest.cc", |
| 1416 "cert/nss_profile_filter_chromeos_unittest.cc", | 1417 "cert/nss_profile_filter_chromeos_unittest.cc", |
| 1417 ] | 1418 ] |
| 1418 } | 1419 } |
| 1419 } | 1420 } |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2003 "url_request/url_request_fuzzer.cc", | 2004 "url_request/url_request_fuzzer.cc", |
| 2004 ] | 2005 ] |
| 2005 deps = [ | 2006 deps = [ |
| 2006 ":net_fuzzer_test_support", | 2007 ":net_fuzzer_test_support", |
| 2007 ":test_support", | 2008 ":test_support", |
| 2008 "//base", | 2009 "//base", |
| 2009 "//net", | 2010 "//net", |
| 2010 ] | 2011 ] |
| 2011 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2012 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2012 } | 2013 } |
| OLD | NEW |