| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 executable("disk_cache_memory_test") { | 1042 executable("disk_cache_memory_test") { |
| 1043 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] | 1043 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] |
| 1044 deps = [ | 1044 deps = [ |
| 1045 ":net", | 1045 ":net", |
| 1046 "//base", | 1046 "//base", |
| 1047 ] | 1047 ] |
| 1048 } | 1048 } |
| 1049 } | 1049 } |
| 1050 | 1050 |
| 1051 # TODO(GYP) make this compile on Android, we need some native test deps done. | 1051 # TODO(GYP) make this compile on Android, we need some native test deps done. |
| 1052 if (!is_android) { | 1052 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. |
| 1053 if (!is_android && !is_win) { |
| 1053 | 1054 |
| 1054 source_set("quic_tools") { | 1055 source_set("quic_tools") { |
| 1055 sources = [ | 1056 sources = [ |
| 1056 "quic/quic_dispatcher.cc", | 1057 "quic/quic_dispatcher.cc", |
| 1057 "quic/quic_dispatcher.h", | 1058 "quic/quic_dispatcher.h", |
| 1058 "quic/quic_in_memory_cache.cc", | 1059 "quic/quic_in_memory_cache.cc", |
| 1059 "quic/quic_in_memory_cache.h", | 1060 "quic/quic_in_memory_cache.h", |
| 1060 "quic/quic_per_connection_packet_writer.cc", | 1061 "quic/quic_per_connection_packet_writer.cc", |
| 1061 "quic/quic_per_connection_packet_writer.h", | 1062 "quic/quic_per_connection_packet_writer.h", |
| 1062 "quic/quic_server.cc", | 1063 "quic/quic_server.cc", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1347 sources = [ "quic/quic_server_bin.cc" ] | 1348 sources = [ "quic/quic_server_bin.cc" ] |
| 1348 deps = [ | 1349 deps = [ |
| 1349 ":quic_tools", | 1350 ":quic_tools", |
| 1350 ":net", | 1351 ":net", |
| 1351 "//base", | 1352 "//base", |
| 1352 "//third_party/boringssl", | 1353 "//third_party/boringssl", |
| 1353 ] | 1354 ] |
| 1354 } | 1355 } |
| 1355 | 1356 |
| 1356 } # !is_android | 1357 } # !is_android |
| OLD | NEW |