| 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("//url/config.gni") | 8 import("//url/config.gni") |
| 9 | 9 |
| 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
| (...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 "proxy/proxy_script_fetcher_impl_unittest.cc", | 1289 "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 1290 "socket/ssl_client_socket_unittest.cc", | 1290 "socket/ssl_client_socket_unittest.cc", |
| 1291 "url_request/url_fetcher_impl_unittest.cc", | 1291 "url_request/url_fetcher_impl_unittest.cc", |
| 1292 "url_request/url_request_context_builder_unittest.cc", | 1292 "url_request/url_request_context_builder_unittest.cc", |
| 1293 # Needs GetAppOutput(). | 1293 # Needs GetAppOutput(). |
| 1294 "test/python_utils_unittest.cc", | 1294 "test/python_utils_unittest.cc", |
| 1295 | 1295 |
| 1296 # The following tests are disabled because they don't apply to | 1296 # The following tests are disabled because they don't apply to |
| 1297 # iOS. | 1297 # iOS. |
| 1298 # OS is not "linux" or "freebsd" or "openbsd". | 1298 # OS is not "linux" or "freebsd" or "openbsd". |
| 1299 "socket/unix_domain_socket_posix_unittest.cc", | 1299 "socket/unix_domain_client_socket_posix_unittest.cc", |
| 1300 "socket/unix_domain_listen_socket_posix_unittest.cc", |
| 1301 "socket/unix_domain_server_socket_posix_unittest.cc", |
| 1300 | 1302 |
| 1301 # See bug http://crbug.com/344533. | 1303 # See bug http://crbug.com/344533. |
| 1302 "disk_cache/blockfile/index_table_v3_unittest.cc", | 1304 "disk_cache/blockfile/index_table_v3_unittest.cc", |
| 1303 ] | 1305 ] |
| 1304 } | 1306 } |
| 1305 | 1307 |
| 1306 if (is_android) { | 1308 if (is_android) { |
| 1307 sources -= [ | 1309 sources -= [ |
| 1308 "dns/dns_config_service_posix_unittest.cc", | 1310 "dns/dns_config_service_posix_unittest.cc", |
| 1309 ] | 1311 ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1332 sources = [ "quic/quic_server_bin.cc" ] | 1334 sources = [ "quic/quic_server_bin.cc" ] |
| 1333 deps = [ | 1335 deps = [ |
| 1334 ":quic_tools", | 1336 ":quic_tools", |
| 1335 ":net", | 1337 ":net", |
| 1336 "//base", | 1338 "//base", |
| 1337 "//third_party/openssl", | 1339 "//third_party/openssl", |
| 1338 ] | 1340 ] |
| 1339 } | 1341 } |
| 1340 | 1342 |
| 1341 } # !is_android | 1343 } # !is_android |
| OLD | NEW |