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