| 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 26 matching lines...) Expand all Loading... |
| 37 "../interfaces/application", | 37 "../interfaces/application", |
| 38 "../interfaces/bindings", | 38 "../interfaces/bindings", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 dart_pkg("mojo") { | 42 dart_pkg("mojo") { |
| 43 sources = dart_mojo_sdk_sources + [ | 43 sources = dart_mojo_sdk_sources + [ |
| 44 "pubspec.yaml", | 44 "pubspec.yaml", |
| 45 "README.md", | 45 "README.md", |
| 46 ] | 46 ] |
| 47 |
| 48 # List of mojom targets that the mojo pkg exports |
| 47 deps = [ | 49 deps = [ |
| 48 "../interfaces/application", | 50 "../interfaces/application", |
| 49 "../interfaces/bindings", | 51 "../interfaces/bindings", |
| 52 "../../services", |
| 50 ] | 53 ] |
| 51 } | 54 } |
| OLD | NEW |