| 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 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] | 1058 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] |
| 1059 deps = [ | 1059 deps = [ |
| 1060 ":net", | 1060 ":net", |
| 1061 "//base", | 1061 "//base", |
| 1062 ] | 1062 ] |
| 1063 } | 1063 } |
| 1064 } | 1064 } |
| 1065 | 1065 |
| 1066 # TODO(GYP) make this compile on Android, we need some native test deps done. | 1066 # TODO(GYP) make this compile on Android, we need some native test deps done. |
| 1067 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. | 1067 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. |
| 1068 if (!is_android && !is_win) { | 1068 # TODO(GYP) Also doesn't work on Mac, need to figure out why not. |
| 1069 if (!is_android && !is_win && !is_mac) { |
| 1069 | 1070 |
| 1070 source_set("quic_tools") { | 1071 source_set("quic_tools") { |
| 1071 sources = [ | 1072 sources = [ |
| 1072 "quic/quic_dispatcher.cc", | 1073 "quic/quic_dispatcher.cc", |
| 1073 "quic/quic_dispatcher.h", | 1074 "quic/quic_dispatcher.h", |
| 1074 "quic/quic_in_memory_cache.cc", | 1075 "quic/quic_in_memory_cache.cc", |
| 1075 "quic/quic_in_memory_cache.h", | 1076 "quic/quic_in_memory_cache.h", |
| 1076 "quic/quic_per_connection_packet_writer.cc", | 1077 "quic/quic_per_connection_packet_writer.cc", |
| 1077 "quic/quic_per_connection_packet_writer.h", | 1078 "quic/quic_per_connection_packet_writer.h", |
| 1078 "quic/quic_server.cc", | 1079 "quic/quic_server.cc", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 executable("quic_server") { | 1361 executable("quic_server") { |
| 1361 sources = [ "quic/quic_server_bin.cc" ] | 1362 sources = [ "quic/quic_server_bin.cc" ] |
| 1362 deps = [ | 1363 deps = [ |
| 1363 ":quic_tools", | 1364 ":quic_tools", |
| 1364 ":net", | 1365 ":net", |
| 1365 "//base", | 1366 "//base", |
| 1366 "//third_party/boringssl", | 1367 "//third_party/boringssl", |
| 1367 ] | 1368 ] |
| 1368 } | 1369 } |
| 1369 | 1370 |
| 1370 } # !is_android | 1371 } # !is_android && !is_win && !is_mac |
| OLD | NEW |