| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "lib/widgets/scrollable.dart", | 80 "lib/widgets/scrollable.dart", |
| 81 "lib/widgets/scrollable_list.dart", | 81 "lib/widgets/scrollable_list.dart", |
| 82 "lib/widgets/scrollable_viewport.dart", | 82 "lib/widgets/scrollable_viewport.dart", |
| 83 "lib/widgets/snack_bar.dart", | 83 "lib/widgets/snack_bar.dart", |
| 84 "lib/widgets/switch.dart", | 84 "lib/widgets/switch.dart", |
| 85 "lib/widgets/tabs.dart", | 85 "lib/widgets/tabs.dart", |
| 86 "lib/widgets/task_description.dart", | 86 "lib/widgets/task_description.dart", |
| 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/widget.dart", | 91 "lib/widgets/widget.dart", |
| 91 "pubspec.yaml", | 92 "pubspec.yaml", |
| 92 ] | 93 ] |
| 93 | 94 |
| 94 # List of mojom targets that the sky pkg exports | 95 # List of mojom targets that the sky pkg exports |
| 95 deps = [ | 96 deps = [ |
| 96 "//sky/services/engine:interfaces", | 97 "//sky/services/engine:interfaces", |
| 97 "//sky/services/activity:interfaces", | 98 "//sky/services/activity:interfaces", |
| 98 ] | 99 ] |
| 99 | 100 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ":sky", | 145 ":sky", |
| 145 ] | 146 ] |
| 146 } | 147 } |
| 147 | 148 |
| 148 group("sdk") { | 149 group("sdk") { |
| 149 deps = [ | 150 deps = [ |
| 150 ":sky", | 151 ":sky", |
| 151 ":material_design_icons", | 152 ":material_design_icons", |
| 152 ] | 153 ] |
| 153 } | 154 } |
| OLD | NEW |