| 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/snack_bar.dart", |
| 78 "lib/widgets/switch.dart", | 79 "lib/widgets/switch.dart", |
| 79 "lib/widgets/tabs.dart", | 80 "lib/widgets/tabs.dart", |
| 80 "lib/widgets/theme.dart", | 81 "lib/widgets/theme.dart", |
| 81 "lib/widgets/toggleable.dart", | 82 "lib/widgets/toggleable.dart", |
| 82 "lib/widgets/tool_bar.dart", | 83 "lib/widgets/tool_bar.dart", |
| 83 "lib/widgets/widget.dart", | 84 "lib/widgets/widget.dart", |
| 84 "pubspec.yaml", | 85 "pubspec.yaml", |
| 85 ] | 86 ] |
| 86 | 87 |
| 87 # List of mojom targets that the sky pkg exports | 88 # List of mojom targets that the sky pkg exports |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ":sky", | 127 ":sky", |
| 127 ] | 128 ] |
| 128 } | 129 } |
| 129 | 130 |
| 130 group("sdk") { | 131 group("sdk") { |
| 131 deps = [ | 132 deps = [ |
| 132 ":sky", | 133 ":sky", |
| 133 ":material_design_icons", | 134 ":material_design_icons", |
| 134 ] | 135 ] |
| 135 } | 136 } |
| OLD | NEW |