| Index: examples/dart/wget/BUILD.gn
|
| diff --git a/examples/dart/wget/BUILD.gn b/examples/dart/wget/BUILD.gn
|
| index 563beb896bafc3bf3ffcd2b73763f3ffc572d954..de4d861cb8663d955913dd4c4c2d61d2114b4766 100644
|
| --- a/examples/dart/wget/BUILD.gn
|
| +++ b/examples/dart/wget/BUILD.gn
|
| @@ -4,20 +4,9 @@
|
|
|
| import("//mojo/public/dart/rules.gni")
|
|
|
| -dartzip_packaged_application("mojo_dart_wget_dartzip") {
|
| - output_name = "dart_wget"
|
| - sources = [
|
| - "lib/main.dart",
|
| - ]
|
| - deps = [
|
| - "//mojo/public/dart:dart_dartzip",
|
| - "//mojo/public/interfaces/network",
|
| - "//mojo/services/network/public/interfaces",
|
| - ]
|
| -}
|
| -
|
| -dart_pkg("mojo_dart_wget_pkg") {
|
| +dart_pkg("wget") {
|
| apps = [ "lib/main.dart" ]
|
| + app_name_override = "dart_wget"
|
| sources = [
|
| "pubspec.yaml",
|
| ]
|
| @@ -26,10 +15,3 @@ dart_pkg("mojo_dart_wget_pkg") {
|
| "//mojo/public/dart",
|
| ]
|
| }
|
| -
|
| -group("wget") {
|
| - deps = [
|
| - ":mojo_dart_wget_dartzip",
|
| - ":mojo_dart_wget_pkg",
|
| - ]
|
| -}
|
|
|