| 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_value.dart", | 11 "lib/animation/animated_value.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", | 14 "lib/animation/fling_curve.dart", |
| 15 "lib/animation/generators.dart", | 15 "lib/animation/generators.dart", |
| 16 "lib/animation/mechanics.dart", | 16 "lib/animation/mechanics.dart", |
| 17 "lib/animation/scroll_behavior.dart", | 17 "lib/animation/scroll_behavior.dart", |
| 18 "lib/assets/.gitignore", | 18 "lib/assets/.gitignore", |
| 19 "lib/assets/material-design-icons.sha1", | 19 "lib/assets/material-design-icons.sha1", |
| 20 "lib/base/debug.dart", | 20 "lib/base/debug.dart", |
| 21 "lib/base/hit_test.dart", | 21 "lib/base/hit_test.dart", |
| 22 "lib/base/lerp.dart", | 22 "lib/base/lerp.dart", |
| 23 "lib/base/node.dart", | 23 "lib/base/node.dart", |
| 24 "lib/base/scheduler.dart", | 24 "lib/base/scheduler.dart", |
| 25 "lib/download_material_design_icons", | 25 "lib/download_material_design_icons", |
| 26 "lib/editing/editable_string.dart", | 26 "lib/editing/editable_string.dart", |
| 27 "lib/editing/editable_text.dart", | 27 "lib/editing/editable_text.dart", |
| 28 "lib/editing/input.dart", | 28 "lib/editing/input.dart", |
| 29 "lib/editing/keyboard.dart", | 29 "lib/editing/keyboard.dart", |
| 30 "lib/mojo/activity.dart", |
| 30 "lib/mojo/asset_bundle.dart", | 31 "lib/mojo/asset_bundle.dart", |
| 31 "lib/mojo/embedder.dart", | 32 "lib/mojo/embedder.dart", |
| 32 "lib/mojo/net/fetch.dart", | 33 "lib/mojo/net/fetch.dart", |
| 33 "lib/mojo/net/image_cache.dart", | 34 "lib/mojo/net/image_cache.dart", |
| 34 "lib/mojo/shell.dart", | 35 "lib/mojo/shell.dart", |
| 35 "lib/painting/box_painter.dart", | 36 "lib/painting/box_painter.dart", |
| 36 "lib/painting/shadows.dart", | 37 "lib/painting/shadows.dart", |
| 37 "lib/painting/text_style.dart", | 38 "lib/painting/text_style.dart", |
| 38 "lib/rendering/block.dart", | 39 "lib/rendering/block.dart", |
| 39 "lib/rendering/box.dart", | 40 "lib/rendering/box.dart", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ":sky", | 129 ":sky", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| 131 | 132 |
| 132 group("sdk") { | 133 group("sdk") { |
| 133 deps = [ | 134 deps = [ |
| 134 ":sky", | 135 ":sky", |
| 135 ":material_design_icons", | 136 ":material_design_icons", |
| 136 ] | 137 ] |
| 137 } | 138 } |
| OLD | NEW |