| 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 "README.md", | 10 "README.md", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "lib/framework/components/menu_item.dart", | 38 "lib/framework/components/menu_item.dart", |
| 39 "lib/framework/components/modal_overlay.dart", | 39 "lib/framework/components/modal_overlay.dart", |
| 40 "lib/framework/components/popup_menu.dart", | 40 "lib/framework/components/popup_menu.dart", |
| 41 "lib/framework/components/popup_menu_item.dart", | 41 "lib/framework/components/popup_menu_item.dart", |
| 42 "lib/framework/components/radio.dart", | 42 "lib/framework/components/radio.dart", |
| 43 "lib/framework/components/scaffold.dart", | 43 "lib/framework/components/scaffold.dart", |
| 44 "lib/framework/components/scrollable.dart", | 44 "lib/framework/components/scrollable.dart", |
| 45 "lib/framework/components/tool_bar.dart", | 45 "lib/framework/components/tool_bar.dart", |
| 46 "lib/framework/debug/shake-to-reload.sky", | 46 "lib/framework/debug/shake-to-reload.sky", |
| 47 "lib/framework/debug/tracing.dart", | 47 "lib/framework/debug/tracing.dart", |
| 48 "lib/framework/debug/utils.dart", |
| 48 "lib/framework/editing/editable_string.dart", | 49 "lib/framework/editing/editable_string.dart", |
| 49 "lib/framework/editing/editable_text.dart", | 50 "lib/framework/editing/editable_text.dart", |
| 50 "lib/framework/editing/keyboard.dart", | 51 "lib/framework/editing/keyboard.dart", |
| 51 "lib/framework/editing2/editable_string.dart", | 52 "lib/framework/editing2/editable_string.dart", |
| 52 "lib/framework/editing2/editable_text.dart", | 53 "lib/framework/editing2/editable_text.dart", |
| 53 "lib/framework/editing2/input.dart", | 54 "lib/framework/editing2/input.dart", |
| 54 "lib/framework/editing2/keyboard.dart", | 55 "lib/framework/editing2/keyboard.dart", |
| 55 "lib/framework/elements/animation/controller.dart", | 56 "lib/framework/elements/animation/controller.dart", |
| 56 "lib/framework/elements/animation/timer.dart", | 57 "lib/framework/elements/animation/timer.dart", |
| 57 "lib/framework/elements/material-element.sky", | 58 "lib/framework/elements/material-element.sky", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "//sky/services/viewport", | 129 "//sky/services/viewport", |
| 129 ] | 130 ] |
| 130 | 131 |
| 131 datadeps = [ | 132 datadeps = [ |
| 132 "//sky/services/testing:bindings", | 133 "//sky/services/testing:bindings", |
| 133 "//sky/engine/bindings", | 134 "//sky/engine/bindings", |
| 134 ] | 135 ] |
| 135 | 136 |
| 136 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 137 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 137 } | 138 } |
| OLD | NEW |