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