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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "lib/widgets/checkbox.dart", | 61 "lib/widgets/checkbox.dart", |
62 "lib/widgets/default_text_style.dart", | 62 "lib/widgets/default_text_style.dart", |
63 "lib/widgets/dialog.dart", | 63 "lib/widgets/dialog.dart", |
64 "lib/widgets/drawer.dart", | 64 "lib/widgets/drawer.dart", |
65 "lib/widgets/drawer_header.dart", | 65 "lib/widgets/drawer_header.dart", |
66 "lib/widgets/fixed_height_scrollable.dart", | 66 "lib/widgets/fixed_height_scrollable.dart", |
67 "lib/widgets/flat_button.dart", | 67 "lib/widgets/flat_button.dart", |
68 "lib/widgets/floating_action_button.dart", | 68 "lib/widgets/floating_action_button.dart", |
69 "lib/widgets/icon.dart", | 69 "lib/widgets/icon.dart", |
70 "lib/widgets/icon_button.dart", | 70 "lib/widgets/icon_button.dart", |
| 71 "lib/widgets/icon_theme.dart", |
71 "lib/widgets/ink_well.dart", | 72 "lib/widgets/ink_well.dart", |
72 "lib/widgets/material.dart", | 73 "lib/widgets/material.dart", |
73 "lib/widgets/material_button.dart", | 74 "lib/widgets/material_button.dart", |
74 "lib/widgets/menu_divider.dart", | 75 "lib/widgets/menu_divider.dart", |
75 "lib/widgets/menu_item.dart", | 76 "lib/widgets/menu_item.dart", |
76 "lib/widgets/modal_overlay.dart", | 77 "lib/widgets/modal_overlay.dart", |
77 "lib/widgets/navigator.dart", | 78 "lib/widgets/navigator.dart", |
78 "lib/widgets/popup_menu.dart", | 79 "lib/widgets/popup_menu.dart", |
79 "lib/widgets/popup_menu_item.dart", | 80 "lib/widgets/popup_menu_item.dart", |
80 "lib/widgets/radio.dart", | 81 "lib/widgets/radio.dart", |
(...skipping 60 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 |