| OLD | NEW |
| 1 import("../mojo_sdk.gni") | 1 import("../mojo_sdk.gni") |
| 2 import("rules.gni") | 2 import("rules.gni") |
| 3 | 3 |
| 4 dart_mojo_sdk_sources = [ | 4 dart_mojo_sdk_sources = [ |
| 5 "lib/application.dart", | 5 "lib/application.dart", |
| 6 "lib/bindings.dart", | 6 "lib/bindings.dart", |
| 7 "lib/core.dart", | 7 "lib/core.dart", |
| 8 "lib/src/application_connection.dart", | 8 "lib/src/application_connection.dart", |
| 9 "lib/src/application.dart", | 9 "lib/src/application.dart", |
| 10 "lib/src/buffer.dart", | 10 "lib/src/buffer.dart", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "lib/src/types.dart", | 22 "lib/src/types.dart", |
| 23 "sdk_ext/internal.dart", | 23 "sdk_ext/internal.dart", |
| 24 "sdk_ext/src/handle_watcher.dart", | 24 "sdk_ext/src/handle_watcher.dart", |
| 25 "sdk_ext/src/natives.dart", | 25 "sdk_ext/src/natives.dart", |
| 26 "sdk_ext/src/timer_queue.dart", | 26 "sdk_ext/src/timer_queue.dart", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 dartzip_package("dart") { | 29 dartzip_package("dart") { |
| 30 sources = dart_mojo_sdk_sources + [ | 30 sources = dart_mojo_sdk_sources + [ |
| 31 "pubspec.yaml", | 31 "pubspec.yaml", |
| 32 "CHANGELOG.md", |
| 32 "README.md", | 33 "README.md", |
| 33 ] | 34 ] |
| 34 uses_pub = true | 35 uses_pub = true |
| 35 package_name_override = "mojo" | 36 package_name_override = "mojo" |
| 36 deps = [ | 37 deps = [ |
| 37 "../interfaces/application", | 38 "../interfaces/application", |
| 38 "../interfaces/bindings", | 39 "../interfaces/bindings", |
| 39 ] | 40 ] |
| 40 } | 41 } |
| 41 | 42 |
| 42 dart_pkg("mojo") { | 43 dart_pkg("mojo") { |
| 43 sources = dart_mojo_sdk_sources + [ | 44 sources = dart_mojo_sdk_sources + [ |
| 44 "pubspec.yaml", | 45 "pubspec.yaml", |
| 46 "CHANGELOG.md", |
| 45 "README.md", | 47 "README.md", |
| 46 ] | 48 ] |
| 47 | 49 |
| 48 # List of mojom targets that the mojo pkg exports | 50 # List of mojom targets that the mojo pkg exports |
| 49 deps = [ | 51 deps = [ |
| 50 "../interfaces/application", | 52 "../interfaces/application", |
| 51 "../interfaces/bindings", | 53 "../interfaces/bindings", |
| 52 "../../services", | 54 "../../services", |
| 53 ] | 55 ] |
| 54 } | 56 } |
| OLD | NEW |