| 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("sdk") { | 7 dart_pkg("sdk") { |
| 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/curves.dart", | 13 "lib/animation/curves.dart", |
| 13 "lib/animation/fling_curve.dart", | 14 "lib/animation/fling_curve.dart", |
| 14 "lib/animation/generators.dart", | 15 "lib/animation/generators.dart", |
| 15 "lib/animation/mechanics.dart", | 16 "lib/animation/mechanics.dart", |
| 16 "lib/animation/scroll_behavior.dart", | 17 "lib/animation/scroll_behavior.dart", |
| 17 "lib/assets/.gitignore", | 18 "lib/assets/.gitignore", |
| 18 "lib/assets/material-design-icons.sha1", | 19 "lib/assets/material-design-icons.sha1", |
| 19 "lib/base/debug.dart", | 20 "lib/base/debug.dart", |
| 20 "lib/base/hit_test.dart", | 21 "lib/base/hit_test.dart", |
| 22 "lib/base/lerp.dart", |
| 21 "lib/base/node.dart", | 23 "lib/base/node.dart", |
| 22 "lib/base/scheduler.dart", | 24 "lib/base/scheduler.dart", |
| 23 "lib/download_material_design_icons", | 25 "lib/download_material_design_icons", |
| 24 "lib/editing/editable_string.dart", | 26 "lib/editing/editable_string.dart", |
| 25 "lib/editing/editable_text.dart", | 27 "lib/editing/editable_text.dart", |
| 26 "lib/editing/input.dart", | 28 "lib/editing/input.dart", |
| 27 "lib/editing/keyboard.dart", | 29 "lib/editing/keyboard.dart", |
| 28 "lib/framework/animation/animated_value.dart", | 30 "lib/framework/animation/animated_value.dart", |
| 29 "lib/framework/animation/curves.dart", | 31 "lib/framework/animation/curves.dart", |
| 30 "lib/framework/animation/fling_curve.dart", | 32 "lib/framework/animation/fling_curve.dart", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "//mojo/dart/mojo_services", | 139 "//mojo/dart/mojo_services", |
| 138 "//mojo/dart/mojom", | 140 "//mojo/dart/mojom", |
| 139 "//mojo/public/dart:mojo", | 141 "//mojo/public/dart:mojo", |
| 140 "//sky/engine/bindings", | 142 "//sky/engine/bindings", |
| 141 "//sky/services/testing", | 143 "//sky/services/testing", |
| 142 "//third_party/dart-pkg", | 144 "//third_party/dart-pkg", |
| 143 ] | 145 ] |
| 144 | 146 |
| 145 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 147 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 146 } | 148 } |
| OLD | NEW |