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 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1089 deps += [ | 1089 deps += [ |
1090 ":balsa", | 1090 ":balsa", |
1091 ":epoll_server", | 1091 ":epoll_server", |
1092 ":flip_in_mem_edsm_server_base", | 1092 ":flip_in_mem_edsm_server_base", |
1093 ":quic_base", | 1093 ":quic_base", |
1094 ] | 1094 ] |
1095 } | 1095 } |
1096 | 1096 |
1097 if (is_chromeos) { | 1097 if (is_chromeos) { |
1098 sources -= [ | 1098 sources -= [ |
1099 "base/network_change_notifier_linux_unittest.cc", | |
1100 "proxy/proxy_config_service_linux_unittest.cc", | 1099 "proxy/proxy_config_service_linux_unittest.cc", |
1101 ] | 1100 ] |
1102 } | 1101 } |
1103 | 1102 |
1104 if (is_android) { | 1103 if (is_android) { |
1105 sources -= [ | 1104 sources -= [ |
1106 # See bug http://crbug.com/344533. | 1105 # See bug http://crbug.com/344533. |
1107 "disk_cache/blockfile/index_table_v3_unittest.cc", | 1106 "disk_cache/blockfile/index_table_v3_unittest.cc", |
1108 # No res_ninit() et al on Android, so this doesn't make a lot of | 1107 # No res_ninit() et al on Android, so this doesn't make a lot of |
1109 # sense. | 1108 # sense. |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1326 sources = [ "quic/quic_server_bin.cc" ] | 1325 sources = [ "quic/quic_server_bin.cc" ] |
1327 deps = [ | 1326 deps = [ |
1328 ":quic_tools", | 1327 ":quic_tools", |
1329 ":net", | 1328 ":net", |
1330 "//base", | 1329 "//base", |
1331 "//third_party/openssl", | 1330 "//third_party/openssl", |
1332 ] | 1331 ] |
1333 } | 1332 } |
1334 | 1333 |
1335 } # !is_android | 1334 } # !is_android |
OLD | NEW |