| 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 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1463 ":epoll_quic_tools", | 1463 ":epoll_quic_tools", |
| 1464 ":epoll_server", | 1464 ":epoll_server", |
| 1465 ":flip_in_mem_edsm_server_base", | 1465 ":flip_in_mem_edsm_server_base", |
| 1466 ] | 1466 ] |
| 1467 } | 1467 } |
| 1468 | 1468 |
| 1469 if (is_mac || is_ios) { | 1469 if (is_mac || is_ios) { |
| 1470 sources += gypi_values.net_base_test_mac_ios_sources | 1470 sources += gypi_values.net_base_test_mac_ios_sources |
| 1471 } | 1471 } |
| 1472 | 1472 |
| 1473 if (is_mac) { |
| 1474 libs = [ "Security.framework" ] |
| 1475 } |
| 1476 |
| 1473 if (is_chromeos) { | 1477 if (is_chromeos) { |
| 1474 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1478 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 1475 } | 1479 } |
| 1476 | 1480 |
| 1477 if (v8_use_external_startup_data) { | 1481 if (v8_use_external_startup_data) { |
| 1478 deps += [ "//gin" ] | 1482 deps += [ "//gin" ] |
| 1479 } | 1483 } |
| 1480 | 1484 |
| 1481 if (!use_nss_certs) { | 1485 if (!use_nss_certs) { |
| 1482 sources -= [ | 1486 sources -= [ |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2068 "url_request/url_request_fuzzer.cc", | 2072 "url_request/url_request_fuzzer.cc", |
| 2069 ] | 2073 ] |
| 2070 deps = [ | 2074 deps = [ |
| 2071 ":net_fuzzer_test_support", | 2075 ":net_fuzzer_test_support", |
| 2072 ":test_support", | 2076 ":test_support", |
| 2073 "//base", | 2077 "//base", |
| 2074 "//net", | 2078 "//net", |
| 2075 ] | 2079 ] |
| 2076 dict = "data/http/http.dict" | 2080 dict = "data/http/http.dict" |
| 2077 } | 2081 } |
| OLD | NEW |