| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "lib/widgets/scaffold.dart", | 82 "lib/widgets/scaffold.dart", |
| 83 "lib/widgets/scrollable.dart", | 83 "lib/widgets/scrollable.dart", |
| 84 "lib/widgets/scrollable_list.dart", | 84 "lib/widgets/scrollable_list.dart", |
| 85 "lib/widgets/snack_bar.dart", | 85 "lib/widgets/snack_bar.dart", |
| 86 "lib/widgets/switch.dart", | 86 "lib/widgets/switch.dart", |
| 87 "lib/widgets/tabs.dart", | 87 "lib/widgets/tabs.dart", |
| 88 "lib/widgets/task_description.dart", | 88 "lib/widgets/task_description.dart", |
| 89 "lib/widgets/theme.dart", | 89 "lib/widgets/theme.dart", |
| 90 "lib/widgets/toggleable.dart", | 90 "lib/widgets/toggleable.dart", |
| 91 "lib/widgets/tool_bar.dart", | 91 "lib/widgets/tool_bar.dart", |
| 92 "lib/widgets/variable_height_scrollable.dart", |
| 92 "lib/widgets/widget.dart", | 93 "lib/widgets/widget.dart", |
| 93 "pubspec.yaml", | 94 "pubspec.yaml", |
| 94 ] | 95 ] |
| 95 | 96 |
| 96 # List of mojom targets that the sky pkg exports | 97 # List of mojom targets that the sky pkg exports |
| 97 deps = [ | 98 deps = [ |
| 98 "//sky/services/engine:interfaces", | 99 "//sky/services/engine:interfaces", |
| 99 "//sky/services/activity:interfaces", | 100 "//sky/services/activity:interfaces", |
| 100 ] | 101 ] |
| 101 | 102 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ":sky", | 142 ":sky", |
| 142 ] | 143 ] |
| 143 } | 144 } |
| 144 | 145 |
| 145 group("sdk") { | 146 group("sdk") { |
| 146 deps = [ | 147 deps = [ |
| 147 ":sky", | 148 ":sky", |
| 148 ":material_design_icons", | 149 ":material_design_icons", |
| 149 ] | 150 ] |
| 150 } | 151 } |
| OLD | NEW |