| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "lib/framework/rendering/object.dart", | 85 "lib/framework/rendering/object.dart", |
| 86 "lib/framework/rendering/paragraph.dart", | 86 "lib/framework/rendering/paragraph.dart", |
| 87 "lib/framework/rendering/stack.dart", | 87 "lib/framework/rendering/stack.dart", |
| 88 "lib/framework/scheduler.dart", | 88 "lib/framework/scheduler.dart", |
| 89 "lib/framework/shell.dart", | 89 "lib/framework/shell.dart", |
| 90 "lib/framework/theme/colors.dart", | 90 "lib/framework/theme/colors.dart", |
| 91 "lib/framework/theme/shadows.dart", | 91 "lib/framework/theme/shadows.dart", |
| 92 "lib/framework/theme/typography.dart", | 92 "lib/framework/theme/typography.dart", |
| 93 "lib/framework/theme/view_configuration.dart", | 93 "lib/framework/theme/view_configuration.dart", |
| 94 "lib/framework/theme2/colors.dart", | 94 "lib/framework/theme2/colors.dart", |
| 95 "lib/framework/theme2/edges.dart", |
| 95 "lib/framework/theme2/shadows.dart", | 96 "lib/framework/theme2/shadows.dart", |
| 96 "lib/framework/theme2/typography.dart", | 97 "lib/framework/theme2/typography.dart", |
| 97 "lib/framework/theme2/view_configuration.dart", | 98 "lib/framework/theme2/view_configuration.dart", |
| 98 "lib/framework/widgets/animated_component.dart", | 99 "lib/framework/widgets/animated_component.dart", |
| 99 "lib/framework/widgets/button.dart", | |
| 100 "lib/framework/widgets/button_base.dart", | 100 "lib/framework/widgets/button_base.dart", |
| 101 "lib/framework/widgets/checkbox.dart", | 101 "lib/framework/widgets/checkbox.dart", |
| 102 "lib/framework/widgets/drawer.dart", | 102 "lib/framework/widgets/drawer.dart", |
| 103 "lib/framework/widgets/drawer_header.dart", | 103 "lib/framework/widgets/drawer_header.dart", |
| 104 "lib/framework/widgets/fixed_height_scrollable.dart", | 104 "lib/framework/widgets/fixed_height_scrollable.dart", |
| 105 "lib/framework/widgets/floating_action_button.dart", | 105 "lib/framework/widgets/floating_action_button.dart", |
| 106 "lib/framework/widgets/icon.dart", | 106 "lib/framework/widgets/icon.dart", |
| 107 "lib/framework/widgets/icon_button.dart", | 107 "lib/framework/widgets/icon_button.dart", |
| 108 "lib/framework/widgets/ink_well.dart", | 108 "lib/framework/widgets/ink_well.dart", |
| 109 "lib/framework/widgets/material.dart", | 109 "lib/framework/widgets/material.dart", |
| 110 "lib/framework/widgets/menu_divider.dart", | 110 "lib/framework/widgets/menu_divider.dart", |
| 111 "lib/framework/widgets/menu_item.dart", | 111 "lib/framework/widgets/menu_item.dart", |
| 112 "lib/framework/widgets/modal_overlay.dart", | 112 "lib/framework/widgets/modal_overlay.dart", |
| 113 "lib/framework/widgets/popup_menu.dart", | 113 "lib/framework/widgets/popup_menu.dart", |
| 114 "lib/framework/widgets/popup_menu_item.dart", | 114 "lib/framework/widgets/popup_menu_item.dart", |
| 115 "lib/framework/widgets/radio.dart", | 115 "lib/framework/widgets/radio.dart", |
| 116 "lib/framework/widgets/raised_button.dart", |
| 116 "lib/framework/widgets/scaffold.dart", | 117 "lib/framework/widgets/scaffold.dart", |
| 117 "lib/framework/widgets/scrollable.dart", | 118 "lib/framework/widgets/scrollable.dart", |
| 118 "lib/framework/widgets/tool_bar.dart", | 119 "lib/framework/widgets/tool_bar.dart", |
| 119 "lib/framework/widgets/ui_node.dart", | 120 "lib/framework/widgets/ui_node.dart", |
| 120 "lib/framework/widgets/wrappers.dart", | 121 "lib/framework/widgets/wrappers.dart", |
| 121 "lib/sky_tool", | 122 "lib/sky_tool", |
| 122 "pubspec.yaml", | 123 "pubspec.yaml", |
| 123 ] | 124 ] |
| 124 | 125 |
| 125 # List of mojom targets that the sky pkg exports | 126 # List of mojom targets that the sky pkg exports |
| 126 deps = [ | 127 deps = [ |
| 127 "//sky/services/viewport", | 128 "//sky/services/viewport", |
| 128 ] | 129 ] |
| 129 | 130 |
| 130 datadeps = [ | 131 datadeps = [ |
| 131 "//sky/services/testing:bindings", | 132 "//sky/services/testing:bindings", |
| 132 "//sky/engine/bindings", | 133 "//sky/engine/bindings", |
| 133 ] | 134 ] |
| 134 | 135 |
| 135 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 136 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 136 } | 137 } |
| OLD | NEW |