| 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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1078 ":net", | 1078 ":net", |
| 1079 ":quic_tools", | 1079 ":quic_tools", |
| 1080 ":test_support", | 1080 ":test_support", |
| 1081 "//base", | 1081 "//base", |
| 1082 "//base:i18n", | 1082 "//base:i18n", |
| 1083 "//base:prefs_test_support", | 1083 "//base:prefs_test_support", |
| 1084 "//base/allocator", | 1084 "//base/allocator", |
| 1085 "//base/third_party/dynamic_annotations", | 1085 "//base/third_party/dynamic_annotations", |
| 1086 "//crypto", | 1086 "//crypto", |
| 1087 "//crypto:platform", | 1087 "//crypto:platform", |
| 1088 "//crypto:test_support", |
| 1088 "//net/base/registry_controlled_domains", | 1089 "//net/base/registry_controlled_domains", |
| 1089 "//testing/gmock", | 1090 "//testing/gmock", |
| 1090 "//testing/gtest", | 1091 "//testing/gtest", |
| 1091 "//third_party/zlib", | 1092 "//third_party/zlib", |
| 1092 "//url", | 1093 "//url", |
| 1093 ] | 1094 ] |
| 1094 | 1095 |
| 1095 if (is_linux) { | 1096 if (is_linux) { |
| 1096 sources += gypi_values.net_linux_test_sources | 1097 sources += gypi_values.net_linux_test_sources |
| 1097 deps += [ | 1098 deps += [ |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 sources = [ "quic/quic_server_bin.cc" ] | 1336 sources = [ "quic/quic_server_bin.cc" ] |
| 1336 deps = [ | 1337 deps = [ |
| 1337 ":quic_tools", | 1338 ":quic_tools", |
| 1338 ":net", | 1339 ":net", |
| 1339 "//base", | 1340 "//base", |
| 1340 "//third_party/boringssl", | 1341 "//third_party/boringssl", |
| 1341 ] | 1342 ] |
| 1342 } | 1343 } |
| 1343 | 1344 |
| 1344 } # !is_android | 1345 } # !is_android |
| OLD | NEW |