| 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 1372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 deps += [ | 1383 deps += [ |
| 1384 ":epoll_quic_tools", | 1384 ":epoll_quic_tools", |
| 1385 ":epoll_server", | 1385 ":epoll_server", |
| 1386 ] | 1386 ] |
| 1387 } | 1387 } |
| 1388 | 1388 |
| 1389 if (is_mac || is_ios) { | 1389 if (is_mac || is_ios) { |
| 1390 sources += gypi_values.net_base_test_mac_ios_sources | 1390 sources += gypi_values.net_base_test_mac_ios_sources |
| 1391 } | 1391 } |
| 1392 | 1392 |
| 1393 if (is_mac) { |
| 1394 libs = [ "Security.framework" ] |
| 1395 } |
| 1396 |
| 1393 if (is_chromeos) { | 1397 if (is_chromeos) { |
| 1394 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1398 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 1395 } | 1399 } |
| 1396 | 1400 |
| 1397 if (v8_use_external_startup_data) { | 1401 if (v8_use_external_startup_data) { |
| 1398 deps += [ "//gin" ] | 1402 deps += [ "//gin" ] |
| 1399 } | 1403 } |
| 1400 | 1404 |
| 1401 if (!use_nss_certs) { | 1405 if (!use_nss_certs) { |
| 1402 sources -= [ | 1406 sources -= [ |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 sources = [ | 2052 sources = [ |
| 2049 "http/http_auth_challenge_tokenizer_fuzzer.cc", | 2053 "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 2050 ] | 2054 ] |
| 2051 deps = [ | 2055 deps = [ |
| 2052 ":net_fuzzer_test_support", | 2056 ":net_fuzzer_test_support", |
| 2053 ":test_support", | 2057 ":test_support", |
| 2054 "//base", | 2058 "//base", |
| 2055 "//net", | 2059 "//net", |
| 2056 ] | 2060 ] |
| 2057 } | 2061 } |
| OLD | NEW |