| 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("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 ":mojo_type_converters", | 800 ":mojo_type_converters", |
| 801 ":net", | 801 ":net", |
| 802 "//base", | 802 "//base", |
| 803 "//net/interfaces", | 803 "//net/interfaces", |
| 804 "//third_party/mojo/src/mojo/public/cpp/bindings", | 804 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 805 ] | 805 ] |
| 806 } | 806 } |
| 807 | 807 |
| 808 source_set("mojo_type_converters") { | 808 source_set("mojo_type_converters") { |
| 809 sources = [ | 809 sources = [ |
| 810 "dns/mojo_type_converters.cc", | 810 "dns/mojo_host_type_converters.cc", |
| 811 "dns/mojo_type_converters.h", | 811 "dns/mojo_host_type_converters.h", |
| 812 "proxy/mojo_type_converters.cc", | 812 "proxy/mojo_proxy_type_converters.cc", |
| 813 "proxy/mojo_type_converters.h", | 813 "proxy/mojo_proxy_type_converters.h", |
| 814 ] | 814 ] |
| 815 | 815 |
| 816 public_deps = [ | 816 public_deps = [ |
| 817 ":net", | 817 ":net", |
| 818 "//net/interfaces", | 818 "//net/interfaces", |
| 819 "//third_party/mojo/src/mojo/public/cpp/bindings", | 819 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 820 ] | 820 ] |
| 821 } | 821 } |
| 822 | 822 |
| 823 source_set("net_utility_services") { | 823 source_set("net_utility_services") { |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1492 "quic/quic_server_bin.cc", | 1492 "quic/quic_server_bin.cc", |
| 1493 ] | 1493 ] |
| 1494 deps = [ | 1494 deps = [ |
| 1495 ":quic_tools", | 1495 ":quic_tools", |
| 1496 ":net", | 1496 ":net", |
| 1497 "//base", | 1497 "//base", |
| 1498 "//third_party/boringssl", | 1498 "//third_party/boringssl", |
| 1499 ] | 1499 ] |
| 1500 } | 1500 } |
| 1501 } # !is_android && !is_win && !is_mac | 1501 } # !is_android && !is_win && !is_mac |
| OLD | NEW |