| 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/_sdkext", | 11 "lib/_sdkext", |
| 12 "lib/animation/animated_value.dart", | 12 "lib/animation/animated_value.dart", |
| 13 "lib/animation/animation_performance.dart", | 13 "lib/animation/animation_performance.dart", |
| 14 "lib/animation/curves.dart", | 14 "lib/animation/curves.dart", |
| 15 "lib/animation/fling_curve.dart", | 15 "lib/animation/fling_curve.dart", |
| 16 "lib/animation/generators.dart", | 16 "lib/animation/generators.dart", |
| 17 "lib/animation/mechanics.dart", | 17 "lib/animation/mechanics.dart", |
| 18 "lib/animation/scroll_behavior.dart", | 18 "lib/animation/scroll_behavior.dart", |
| 19 "lib/animation/timeline.dart", |
| 19 "lib/assets/.gitignore", | 20 "lib/assets/.gitignore", |
| 20 "lib/assets/material-design-icons.sha1", | 21 "lib/assets/material-design-icons.sha1", |
| 21 "lib/base/debug.dart", | 22 "lib/base/debug.dart", |
| 22 "lib/base/hit_test.dart", | 23 "lib/base/hit_test.dart", |
| 23 "lib/base/lerp.dart", | 24 "lib/base/lerp.dart", |
| 24 "lib/base/node.dart", | 25 "lib/base/node.dart", |
| 25 "lib/base/scheduler.dart", | 26 "lib/base/scheduler.dart", |
| 26 "lib/download_material_design_icons", | 27 "lib/download_material_design_icons", |
| 27 "lib/editing/editable_string.dart", | 28 "lib/editing/editable_string.dart", |
| 28 "lib/editing/editable_text.dart", | 29 "lib/editing/editable_text.dart", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ":sky", | 140 ":sky", |
| 140 ] | 141 ] |
| 141 } | 142 } |
| 142 | 143 |
| 143 group("sdk") { | 144 group("sdk") { |
| 144 deps = [ | 145 deps = [ |
| 145 ":sky", | 146 ":sky", |
| 146 ":material_design_icons", | 147 ":material_design_icons", |
| 147 ] | 148 ] |
| 148 } | 149 } |
| OLD | NEW |