| 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/assets/.gitignore", | 11 "lib/assets/.gitignore", |
| 12 "lib/assets/material-design-icons.sha1", | 12 "lib/assets/material-design-icons.sha1", |
| 13 "lib/download_material_design_icons", | 13 "lib/download_material_design_icons", |
| 14 "lib/framework/README.md", | 14 "lib/framework/README.md", |
| 15 "lib/framework/animation/animated_value.dart", | 15 "lib/framework/animation/animated_value.dart", |
| 16 "lib/framework/animation/curves.dart", | 16 "lib/framework/animation/curves.dart", |
| 17 "lib/framework/animation/fling_curve.dart", | 17 "lib/framework/animation/fling_curve.dart", |
| 18 "lib/framework/animation/generators.dart", | 18 "lib/framework/animation/generators.dart", |
| 19 "lib/framework/animation/mechanics.dart", | 19 "lib/framework/animation/mechanics.dart", |
| 20 "lib/framework/animation/scroll_behavior.dart", | 20 "lib/framework/animation/scroll_behavior.dart", |
| 21 "lib/framework/components/action_bar.dart", | |
| 22 "lib/framework/components/animated_component.dart", | 21 "lib/framework/components/animated_component.dart", |
| 23 "lib/framework/components/button.dart", | 22 "lib/framework/components/button.dart", |
| 24 "lib/framework/components/button_base.dart", | 23 "lib/framework/components/button_base.dart", |
| 25 "lib/framework/components/checkbox.dart", | 24 "lib/framework/components/checkbox.dart", |
| 26 "lib/framework/components/drawer.dart", | 25 "lib/framework/components/drawer.dart", |
| 27 "lib/framework/components/drawer_header.dart", | 26 "lib/framework/components/drawer_header.dart", |
| 28 "lib/framework/components/fixed_height_scrollable.dart", | 27 "lib/framework/components/fixed_height_scrollable.dart", |
| 29 "lib/framework/components/floating_action_button.dart", | 28 "lib/framework/components/floating_action_button.dart", |
| 30 "lib/framework/components/icon.dart", | 29 "lib/framework/components/icon.dart", |
| 31 "lib/framework/components/icon_button.dart", | 30 "lib/framework/components/icon_button.dart", |
| 32 "lib/framework/components/ink_splash.dart", | 31 "lib/framework/components/ink_splash.dart", |
| 33 "lib/framework/components/ink_well.dart", | 32 "lib/framework/components/ink_well.dart", |
| 34 "lib/framework/components/input.dart", | 33 "lib/framework/components/input.dart", |
| 35 "lib/framework/components/material.dart", | 34 "lib/framework/components/material.dart", |
| 36 "lib/framework/components/menu_divider.dart", | 35 "lib/framework/components/menu_divider.dart", |
| 37 "lib/framework/components/menu_item.dart", | 36 "lib/framework/components/menu_item.dart", |
| 38 "lib/framework/components/modal_overlay.dart", | 37 "lib/framework/components/modal_overlay.dart", |
| 39 "lib/framework/components/popup_menu.dart", | 38 "lib/framework/components/popup_menu.dart", |
| 40 "lib/framework/components/popup_menu_item.dart", | 39 "lib/framework/components/popup_menu_item.dart", |
| 41 "lib/framework/components/radio.dart", | 40 "lib/framework/components/radio.dart", |
| 42 "lib/framework/components/scaffold.dart", | 41 "lib/framework/components/scaffold.dart", |
| 43 "lib/framework/components/scrollable.dart", | 42 "lib/framework/components/scrollable.dart", |
| 43 "lib/framework/components/tool_bar.dart", |
| 44 "lib/framework/debug/shake-to-reload.sky", | 44 "lib/framework/debug/shake-to-reload.sky", |
| 45 "lib/framework/debug/tracing.dart", | 45 "lib/framework/debug/tracing.dart", |
| 46 "lib/framework/editing/editable_string.dart", | 46 "lib/framework/editing/editable_string.dart", |
| 47 "lib/framework/editing/editable_text.dart", | 47 "lib/framework/editing/editable_text.dart", |
| 48 "lib/framework/editing/keyboard.dart", | 48 "lib/framework/editing/keyboard.dart", |
| 49 "lib/framework/elements/animation/controller.dart", | 49 "lib/framework/elements/animation/controller.dart", |
| 50 "lib/framework/elements/animation/timer.dart", | 50 "lib/framework/elements/animation/timer.dart", |
| 51 "lib/framework/elements/material-element.sky", | 51 "lib/framework/elements/material-element.sky", |
| 52 "lib/framework/elements/shadow.sky", | 52 "lib/framework/elements/shadow.sky", |
| 53 "lib/framework/elements/sky-box.sky", | 53 "lib/framework/elements/sky-box.sky", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 77 "lib/framework/theme/typography.dart", | 77 "lib/framework/theme/typography.dart", |
| 78 "lib/framework/theme/view_configuration.dart", | 78 "lib/framework/theme/view_configuration.dart", |
| 79 "lib/sky_tool", | 79 "lib/sky_tool", |
| 80 "pubspec.yaml", | 80 "pubspec.yaml", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 "//sky/services/testing:bindings", | 84 "//sky/services/testing:bindings", |
| 85 ] | 85 ] |
| 86 } | 86 } |
| OLD | NEW |