| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/dart/rules.gni") | 5 source_set("ns_net") { |
| 6 sources = [ |
| 7 "network_service_impl.h", |
| 8 "network_service_impl.mm", |
| 9 "url_loader_impl.h", |
| 10 "url_loader_impl.mm", |
| 11 ] |
| 6 | 12 |
| 7 dartzip_packaged_application("wget") { | |
| 8 output_name = "dart_wget" | |
| 9 sources = [ | |
| 10 "main.dart", | |
| 11 ] | |
| 12 deps = [ | 13 deps = [ |
| 13 "//mojo/public/dart", | 14 "//base:base", |
| 14 "//mojo/public/interfaces/network", | 15 "//mojo/common", |
| 16 "//mojo/public/cpp/application", |
| 15 "//mojo/services/network/public/interfaces", | 17 "//mojo/services/network/public/interfaces", |
| 16 ] | 18 ] |
| 17 } | 19 } |
| OLD | NEW |