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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 | 10 |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 "//build/config/compiler:wexit_time_destructors", | 745 "//build/config/compiler:wexit_time_destructors", |
746 ] | 746 ] |
747 | 747 |
748 deps = [ | 748 deps = [ |
749 ":net", | 749 ":net", |
750 "//base", | 750 "//base", |
751 "//gin", | 751 "//gin", |
752 "//url", | 752 "//url", |
753 "//v8", | 753 "//v8", |
754 ] | 754 ] |
| 755 |
| 756 forward_dependent_configs_from = [ ":net" ] |
755 } | 757 } |
756 } | 758 } |
757 | 759 |
758 if (!is_ios && !is_android) { | 760 if (!is_ios && !is_android) { |
759 executable("crash_cache") { | 761 executable("crash_cache") { |
760 sources = [ "tools/crash_cache/crash_cache.cc" ] | 762 sources = [ "tools/crash_cache/crash_cache.cc" ] |
761 configs += [ ":net_win_size_truncation" ] | 763 configs += [ ":net_win_size_truncation" ] |
762 deps = [ | 764 deps = [ |
763 ":net", | 765 ":net", |
764 ":test_support", | 766 ":test_support", |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1314 sources = [ "quic/quic_server_bin.cc" ] | 1316 sources = [ "quic/quic_server_bin.cc" ] |
1315 deps = [ | 1317 deps = [ |
1316 ":quic_tools", | 1318 ":quic_tools", |
1317 ":net", | 1319 ":net", |
1318 "//base", | 1320 "//base", |
1319 "//third_party/openssl", | 1321 "//third_party/openssl", |
1320 ] | 1322 ] |
1321 } | 1323 } |
1322 | 1324 |
1323 } # !is_android | 1325 } # !is_android |
OLD | NEW |