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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 libs = [ | 454 libs = [ |
455 "Foundation.framework", | 455 "Foundation.framework", |
456 "Security.framework", | 456 "Security.framework", |
457 "SystemConfiguration.framework", | 457 "SystemConfiguration.framework", |
458 "resolv", | 458 "resolv", |
459 ] | 459 ] |
460 } | 460 } |
461 | 461 |
462 if (is_ios) { | 462 if (is_ios) { |
463 # Add back some sources that were otherwise filtered out. iOS additionally | 463 # Add back some sources that were otherwise filtered out. iOS additionally |
464 # doesn't set USE_NSS but needs some of the files. | 464 # doesn't set USE_NSS_CERTS but needs some of the files. |
465 set_sources_assignment_filter([]) | 465 set_sources_assignment_filter([]) |
466 sources += [ | 466 sources += [ |
467 "base/net_util_mac.cc", | 467 "base/net_util_mac.cc", |
468 "base/net_util_mac.h", | 468 "base/net_util_mac.h", |
469 "base/network_change_notifier_mac.cc", | 469 "base/network_change_notifier_mac.cc", |
470 "base/network_config_watcher_mac.cc", | 470 "base/network_config_watcher_mac.cc", |
471 "base/platform_mime_util_mac.mm", | 471 "base/platform_mime_util_mac.mm", |
472 "cert/cert_verify_proc_nss.cc", | 472 "cert/cert_verify_proc_nss.cc", |
473 "cert/cert_verify_proc_nss.h", | 473 "cert/cert_verify_proc_nss.h", |
474 "cert/test_root_certs_nss.cc", | 474 "cert/test_root_certs_nss.cc", |
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1649 } else { | 1649 } else { |
1650 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1650 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1651 } | 1651 } |
1652 | 1652 |
1653 if (is_win && icu_use_data_file) { | 1653 if (is_win && icu_use_data_file) { |
1654 # This is needed to trigger the dll copy step on windows. | 1654 # This is needed to trigger the dll copy step on windows. |
1655 # TODO(mark): Specifying this here shouldn't be necessary. | 1655 # TODO(mark): Specifying this here shouldn't be necessary. |
1656 deps += [ "//third_party/icu:icudata" ] | 1656 deps += [ "//third_party/icu:icudata" ] |
1657 } | 1657 } |
1658 } | 1658 } |
OLD | NEW |