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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 deps += [ | 1380 deps += [ |
1381 ":epoll_quic_tools", | 1381 ":epoll_quic_tools", |
1382 ":epoll_server", | 1382 ":epoll_server", |
1383 ] | 1383 ] |
1384 } | 1384 } |
1385 | 1385 |
1386 if (is_mac || is_ios) { | 1386 if (is_mac || is_ios) { |
1387 sources += gypi_values.net_base_test_mac_ios_sources | 1387 sources += gypi_values.net_base_test_mac_ios_sources |
1388 } | 1388 } |
1389 | 1389 |
| 1390 if (is_mac) { |
| 1391 libs = [ "Security.framework" ] |
| 1392 } |
| 1393 |
1390 if (is_chromeos) { | 1394 if (is_chromeos) { |
1391 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 1395 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
1392 } | 1396 } |
1393 | 1397 |
1394 if (v8_use_external_startup_data) { | 1398 if (v8_use_external_startup_data) { |
1395 deps += [ "//gin" ] | 1399 deps += [ "//gin" ] |
1396 } | 1400 } |
1397 | 1401 |
1398 if (!use_nss_certs) { | 1402 if (!use_nss_certs) { |
1399 sources -= [ | 1403 sources -= [ |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2033 sources = [ | 2037 sources = [ |
2034 "http/http_auth_challenge_tokenizer_fuzzer.cc", | 2038 "http/http_auth_challenge_tokenizer_fuzzer.cc", |
2035 ] | 2039 ] |
2036 deps = [ | 2040 deps = [ |
2037 ":net_fuzzer_test_support", | 2041 ":net_fuzzer_test_support", |
2038 ":test_support", | 2042 ":test_support", |
2039 "//base", | 2043 "//base", |
2040 "//net", | 2044 "//net", |
2041 ] | 2045 ] |
2042 } | 2046 } |
OLD | NEW |