| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "lib/widgets/menu_divider.dart", | 68 "lib/widgets/menu_divider.dart", |
| 69 "lib/widgets/menu_item.dart", | 69 "lib/widgets/menu_item.dart", |
| 70 "lib/widgets/modal_overlay.dart", | 70 "lib/widgets/modal_overlay.dart", |
| 71 "lib/widgets/navigator.dart", | 71 "lib/widgets/navigator.dart", |
| 72 "lib/widgets/popup_menu.dart", | 72 "lib/widgets/popup_menu.dart", |
| 73 "lib/widgets/popup_menu_item.dart", | 73 "lib/widgets/popup_menu_item.dart", |
| 74 "lib/widgets/radio.dart", | 74 "lib/widgets/radio.dart", |
| 75 "lib/widgets/raised_button.dart", | 75 "lib/widgets/raised_button.dart", |
| 76 "lib/widgets/scaffold.dart", | 76 "lib/widgets/scaffold.dart", |
| 77 "lib/widgets/scrollable.dart", | 77 "lib/widgets/scrollable.dart", |
| 78 "lib/widgets/scrollable_list.dart", |
| 78 "lib/widgets/snack_bar.dart", | 79 "lib/widgets/snack_bar.dart", |
| 79 "lib/widgets/switch.dart", | 80 "lib/widgets/switch.dart", |
| 80 "lib/widgets/tabs.dart", | 81 "lib/widgets/tabs.dart", |
| 81 "lib/widgets/theme.dart", | 82 "lib/widgets/theme.dart", |
| 82 "lib/widgets/toggleable.dart", | 83 "lib/widgets/toggleable.dart", |
| 83 "lib/widgets/tool_bar.dart", | 84 "lib/widgets/tool_bar.dart", |
| 84 "lib/widgets/widget.dart", | 85 "lib/widgets/widget.dart", |
| 85 "pubspec.yaml", | 86 "pubspec.yaml", |
| 86 ] | 87 ] |
| 87 | 88 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ":sky", | 128 ":sky", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| 130 | 131 |
| 131 group("sdk") { | 132 group("sdk") { |
| 132 deps = [ | 133 deps = [ |
| 133 ":sky", | 134 ":sky", |
| 134 ":material_design_icons", | 135 ":material_design_icons", |
| 135 ] | 136 ] |
| 136 } | 137 } |
| OLD | NEW |