| 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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 | 10 |
| (...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1275 "proxy/proxy_script_fetcher_impl_unittest.cc", | 1275 "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 1276 "socket/ssl_client_socket_unittest.cc", | 1276 "socket/ssl_client_socket_unittest.cc", |
| 1277 "url_request/url_fetcher_impl_unittest.cc", | 1277 "url_request/url_fetcher_impl_unittest.cc", |
| 1278 "url_request/url_request_context_builder_unittest.cc", | 1278 "url_request/url_request_context_builder_unittest.cc", |
| 1279 # Needs GetAppOutput(). | 1279 # Needs GetAppOutput(). |
| 1280 "test/python_utils_unittest.cc", | 1280 "test/python_utils_unittest.cc", |
| 1281 | 1281 |
| 1282 # The following tests are disabled because they don't apply to | 1282 # The following tests are disabled because they don't apply to |
| 1283 # iOS. | 1283 # iOS. |
| 1284 # OS is not "linux" or "freebsd" or "openbsd". | 1284 # OS is not "linux" or "freebsd" or "openbsd". |
| 1285 "socket/unix_domain_socket_posix_unittest.cc", | 1285 "socket/unix_domain_client_socket_posix_unittest.cc", |
| 1286 "socket/unix_domain_listen_socket_posix_unittest.cc", |
| 1287 "socket/unix_domain_server_socket_posix_unittest.cc", |
| 1286 | 1288 |
| 1287 # See bug http://crbug.com/344533. | 1289 # See bug http://crbug.com/344533. |
| 1288 "disk_cache/blockfile/index_table_v3_unittest.cc", | 1290 "disk_cache/blockfile/index_table_v3_unittest.cc", |
| 1289 ] | 1291 ] |
| 1290 } | 1292 } |
| 1291 | 1293 |
| 1292 if (is_android) { | 1294 if (is_android) { |
| 1293 sources -= [ | 1295 sources -= [ |
| 1294 "dns/dns_config_service_posix_unittest.cc", | 1296 "dns/dns_config_service_posix_unittest.cc", |
| 1295 ] | 1297 ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1318 sources = [ "quic/quic_server_bin.cc" ] | 1320 sources = [ "quic/quic_server_bin.cc" ] |
| 1319 deps = [ | 1321 deps = [ |
| 1320 ":quic_tools", | 1322 ":quic_tools", |
| 1321 ":net", | 1323 ":net", |
| 1322 "//base", | 1324 "//base", |
| 1323 "//third_party/openssl", | 1325 "//third_party/openssl", |
| 1324 ] | 1326 ] |
| 1325 } | 1327 } |
| 1326 | 1328 |
| 1327 } # !is_android | 1329 } # !is_android |
| OLD | NEW |