| Index: examples/dart/hello_world/world/BUILD.gn
|
| diff --git a/examples/dart/hello_world/world/BUILD.gn b/examples/dart/hello_world/world/BUILD.gn
|
| index 58d663ffe730704094abfd08befada60a7386712..bb628d31784937501fff4eb9978825d2670e20a5 100644
|
| --- a/examples/dart/hello_world/world/BUILD.gn
|
| +++ b/examples/dart/hello_world/world/BUILD.gn
|
| @@ -4,27 +4,9 @@
|
|
|
| import("//mojo/public/dart/rules.gni")
|
|
|
| -dartzip_packaged_application("mojo_dart_world_dartzip") {
|
| - output_name = "mojo_dart_world"
|
| - sources = [
|
| - "lib/main.dart",
|
| - "pubspec.yaml",
|
| - ]
|
| - deps = [
|
| - "//mojo/public/dart:dart_dartzip",
|
| - ]
|
| -
|
| - # This exercises the ability of the Dart content handler to run isolates in
|
| - # either strict or non-strict mode at the same time. In a Debug build, the
|
| - # content handler always runs code in strict mode, so we run in different
|
| - # modes only in a Release build.
|
| - if (!is_debug) {
|
| - strict = true
|
| - }
|
| -}
|
| -
|
| -dart_pkg("mojo_dart_world_pkg") {
|
| +dart_pkg("world") {
|
| apps = [ "lib/main.dart" ]
|
| + app_name_override = "dart_world"
|
| sources = [
|
| "pubspec.yaml",
|
| ]
|
| @@ -40,10 +22,3 @@ dart_pkg("mojo_dart_world_pkg") {
|
| strict = true
|
| }
|
| }
|
| -
|
| -group("world") {
|
| - deps = [
|
| - ":mojo_dart_world_dartzip",
|
| - ":mojo_dart_world_pkg",
|
| - ]
|
| -}
|
|
|