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