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 26 matching lines...) Expand all Loading... |
37 "lib/painting/text_style.dart", | 37 "lib/painting/text_style.dart", |
38 "lib/rendering/block.dart", | 38 "lib/rendering/block.dart", |
39 "lib/rendering/box.dart", | 39 "lib/rendering/box.dart", |
40 "lib/rendering/flex.dart", | 40 "lib/rendering/flex.dart", |
41 "lib/rendering/object.dart", | 41 "lib/rendering/object.dart", |
42 "lib/rendering/paragraph.dart", | 42 "lib/rendering/paragraph.dart", |
43 "lib/rendering/sky_binding.dart", | 43 "lib/rendering/sky_binding.dart", |
44 "lib/rendering/stack.dart", | 44 "lib/rendering/stack.dart", |
45 "lib/sky_tool", | 45 "lib/sky_tool", |
46 "lib/theme/colors.dart", | 46 "lib/theme/colors.dart", |
47 "lib/theme/edges.dart", | |
48 "lib/theme/shadows.dart", | 47 "lib/theme/shadows.dart", |
49 "lib/theme/theme_data.dart", | 48 "lib/theme/theme_data.dart", |
50 "lib/theme/typography.dart", | 49 "lib/theme/typography.dart", |
51 "lib/theme/view_configuration.dart", | 50 "lib/theme/view_configuration.dart", |
52 "lib/widgets/animated_component.dart", | 51 "lib/widgets/animated_component.dart", |
53 "lib/widgets/basic.dart", | 52 "lib/widgets/basic.dart", |
54 "lib/widgets/button_base.dart", | 53 "lib/widgets/button_base.dart", |
55 "lib/widgets/card.dart", | 54 "lib/widgets/card.dart", |
56 "lib/widgets/checkbox.dart", | 55 "lib/widgets/checkbox.dart", |
57 "lib/widgets/default_text_style.dart", | 56 "lib/widgets/default_text_style.dart", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 ":sky", | 126 ":sky", |
128 ] | 127 ] |
129 } | 128 } |
130 | 129 |
131 group("sdk") { | 130 group("sdk") { |
132 deps = [ | 131 deps = [ |
133 ":sky", | 132 ":sky", |
134 ":material_design_icons", | 133 ":material_design_icons", |
135 ] | 134 ] |
136 } | 135 } |
OLD | NEW |