| 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", |
| 11 "lib/animation/animated_simulation.dart", | 11 "lib/animation/animated_simulation.dart", |
| 12 "lib/animation/animation_performance.dart", | 12 "lib/animation/animation_performance.dart", |
| 13 "lib/animation/curves.dart", | 13 "lib/animation/curves.dart", |
| 14 "lib/animation/fling_curve.dart", | |
| 15 "lib/animation/scroll_behavior.dart", | 14 "lib/animation/scroll_behavior.dart", |
| 16 "lib/animation/timeline.dart", | 15 "lib/animation/timeline.dart", |
| 17 "lib/assets/.gitignore", | 16 "lib/assets/.gitignore", |
| 18 "lib/assets/material-design-icons.sha1", | 17 "lib/assets/material-design-icons.sha1", |
| 19 "lib/base/debug.dart", | 18 "lib/base/debug.dart", |
| 20 "lib/base/hit_test.dart", | 19 "lib/base/hit_test.dart", |
| 21 "lib/base/lerp.dart", | 20 "lib/base/lerp.dart", |
| 22 "lib/base/node.dart", | 21 "lib/base/node.dart", |
| 23 "lib/base/scheduler.dart", | 22 "lib/base/scheduler.dart", |
| 24 "lib/download_material_design_icons", | 23 "lib/download_material_design_icons", |
| 25 "lib/editing/editable_string.dart", | 24 "lib/editing/editable_string.dart", |
| 26 "lib/editing/editable_text.dart", | 25 "lib/editing/editable_text.dart", |
| 27 "lib/editing/input.dart", | 26 "lib/editing/input.dart", |
| 28 "lib/editing/keyboard.dart", | |
| 29 "lib/mojo/activity.dart", | 27 "lib/mojo/activity.dart", |
| 30 "lib/mojo/asset_bundle.dart", | 28 "lib/mojo/asset_bundle.dart", |
| 31 "lib/mojo/embedder.dart", | 29 "lib/mojo/embedder.dart", |
| 30 "lib/mojo/keyboard.dart", |
| 32 "lib/mojo/net/fetch.dart", | 31 "lib/mojo/net/fetch.dart", |
| 33 "lib/mojo/net/image_cache.dart", | 32 "lib/mojo/net/image_cache.dart", |
| 34 "lib/mojo/shell.dart", | 33 "lib/mojo/shell.dart", |
| 35 "lib/painting/box_painter.dart", | 34 "lib/painting/box_painter.dart", |
| 36 "lib/painting/shadows.dart", | 35 "lib/painting/shadows.dart", |
| 37 "lib/painting/text_style.dart", | 36 "lib/painting/text_style.dart", |
| 38 "lib/rendering/auto_layout.dart", | 37 "lib/rendering/auto_layout.dart", |
| 39 "lib/rendering/block.dart", | 38 "lib/rendering/block.dart", |
| 40 "lib/rendering/box.dart", | 39 "lib/rendering/box.dart", |
| 41 "lib/rendering/flex.dart", | 40 "lib/rendering/flex.dart", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ":sky", | 144 ":sky", |
| 146 ] | 145 ] |
| 147 } | 146 } |
| 148 | 147 |
| 149 group("sdk") { | 148 group("sdk") { |
| 150 deps = [ | 149 deps = [ |
| 151 ":sky", | 150 ":sky", |
| 152 ":material_design_icons", | 151 ":material_design_icons", |
| 153 ] | 152 ] |
| 154 } | 153 } |
| OLD | NEW |