| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "lib/theme/view_configuration.dart", | 50 "lib/theme/view_configuration.dart", |
| 51 "lib/widgets/animated_component.dart", | 51 "lib/widgets/animated_component.dart", |
| 52 "lib/widgets/animation_builder.dart", | 52 "lib/widgets/animation_builder.dart", |
| 53 "lib/widgets/basic.dart", | 53 "lib/widgets/basic.dart", |
| 54 "lib/widgets/block_viewport.dart", | 54 "lib/widgets/block_viewport.dart", |
| 55 "lib/widgets/button_base.dart", | 55 "lib/widgets/button_base.dart", |
| 56 "lib/widgets/card.dart", | 56 "lib/widgets/card.dart", |
| 57 "lib/widgets/checkbox.dart", | 57 "lib/widgets/checkbox.dart", |
| 58 "lib/widgets/default_text_style.dart", | 58 "lib/widgets/default_text_style.dart", |
| 59 "lib/widgets/dialog.dart", | 59 "lib/widgets/dialog.dart", |
| 60 "lib/widgets/dismissable.dart", |
| 60 "lib/widgets/drawer.dart", | 61 "lib/widgets/drawer.dart", |
| 61 "lib/widgets/drawer_header.dart", | 62 "lib/widgets/drawer_header.dart", |
| 62 "lib/widgets/fixed_height_scrollable.dart", | 63 "lib/widgets/fixed_height_scrollable.dart", |
| 63 "lib/widgets/flat_button.dart", | 64 "lib/widgets/flat_button.dart", |
| 64 "lib/widgets/floating_action_button.dart", | 65 "lib/widgets/floating_action_button.dart", |
| 65 "lib/widgets/icon.dart", | 66 "lib/widgets/icon.dart", |
| 66 "lib/widgets/icon_button.dart", | 67 "lib/widgets/icon_button.dart", |
| 67 "lib/widgets/ink_well.dart", | 68 "lib/widgets/ink_well.dart", |
| 68 "lib/widgets/material.dart", | 69 "lib/widgets/material.dart", |
| 69 "lib/widgets/material_button.dart", | 70 "lib/widgets/material_button.dart", |
| (...skipping 74 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 |