Chromium Code Reviews| 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/accessibility/public/interfaces", | |
|
eseidel
2015/06/08 19:22:23
Should this just be a dependency moved into the se
Cutch
2015/06/08 19:47:50
Done.
| |
| 53 "../../services/clipboard/public/interfaces", | |
| 54 "../../services/content_handler/public/interfaces", | |
| 55 "../../services/device_info/public/interfaces", | |
| 56 "../../services/files/public/interfaces", | |
| 57 "../../services/geometry/public/interfaces", | |
| 58 "../../services/gpu/public/interfaces", | |
| 59 "../../services/http_server/public/interfaces", | |
| 60 "../../services/input_events/public/interfaces", | |
| 61 "../../services/keyboard/public/interfaces", | |
| 62 "../../services/location/public/interfaces", | |
| 63 "../../services/native_viewport/public/interfaces", | |
| 64 "../../services/navigation/public/interfaces", | |
| 65 "../../services/network/public/interfaces", | |
| 66 "../../services/prediction/public/interfaces", | |
| 67 "../../services/sensors/public/interfaces", | |
| 68 "../../services/service_registry/public/interfaces", | |
| 69 "../../services/surfaces/public/interfaces", | |
| 70 "../../services/terminal/public/interfaces", | |
| 71 "../../services/view_manager/public/interfaces", | |
| 72 "../../services/window_manager/public/interfaces", | |
| 50 ] | 73 ] |
| 51 } | 74 } |
| OLD | NEW |