OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/dart/rules.gni") | 5 import("//mojo/public/dart/rules.gni") |
6 | 6 |
7 dart_pkg("sky") { | 7 dart_pkg("sky") { |
8 sources = [ | 8 sources = [ |
9 "CHANGELOG.md", | 9 "CHANGELOG.md", |
10 "bin/init.dart", | 10 "bin/init.dart", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "lib/widgets/theme.dart", | 87 "lib/widgets/theme.dart", |
88 "lib/widgets/toggleable.dart", | 88 "lib/widgets/toggleable.dart", |
89 "lib/widgets/tool_bar.dart", | 89 "lib/widgets/tool_bar.dart", |
90 "lib/widgets/variable_height_scrollable.dart", | 90 "lib/widgets/variable_height_scrollable.dart", |
91 "lib/widgets/widget.dart", | 91 "lib/widgets/widget.dart", |
92 "pubspec.yaml", | 92 "pubspec.yaml", |
93 ] | 93 ] |
94 | 94 |
95 # List of mojom targets that the sky pkg exports | 95 # List of mojom targets that the sky pkg exports |
96 deps = [ | 96 deps = [ |
| 97 "//mojo/services/asset_bundle/public/interfaces", |
| 98 "//mojo/services/keyboard/public/interfaces", |
| 99 "//sky/services/activity:interfaces", |
97 "//sky/services/engine:interfaces", | 100 "//sky/services/engine:interfaces", |
98 "//sky/services/activity:interfaces", | |
99 ] | 101 ] |
100 | 102 |
101 datadeps = [ | 103 datadeps = [ |
102 "//mojo/dart/mojo_services", | 104 "//mojo/dart/mojo_services", |
103 "//mojo/dart/mojom", | 105 "//mojo/dart/mojom", |
104 "//mojo/public/dart:mojo", | 106 "//mojo/public/dart:mojo", |
105 "//sky/engine/bindings", | 107 "//sky/engine/bindings", |
106 "//sky/services/testing:interfaces", | 108 "//sky/services/testing:interfaces", |
107 "//sky/services/media:interfaces", | 109 "//sky/services/media:interfaces", |
108 "//third_party/dart-pkg", | 110 "//third_party/dart-pkg", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ":sky", | 147 ":sky", |
146 ] | 148 ] |
147 } | 149 } |
148 | 150 |
149 group("sdk") { | 151 group("sdk") { |
150 deps = [ | 152 deps = [ |
151 ":sky", | 153 ":sky", |
152 ":material_design_icons", | 154 ":material_design_icons", |
153 ] | 155 ] |
154 } | 156 } |
OLD | NEW |