| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "lib/framework/components2/animated_component.dart", | 46 "lib/framework/components2/animated_component.dart", |
| 47 "lib/framework/components2/button.dart", | 47 "lib/framework/components2/button.dart", |
| 48 "lib/framework/components2/button_base.dart", | 48 "lib/framework/components2/button_base.dart", |
| 49 "lib/framework/components2/checkbox.dart", | 49 "lib/framework/components2/checkbox.dart", |
| 50 "lib/framework/components2/drawer.dart", | 50 "lib/framework/components2/drawer.dart", |
| 51 "lib/framework/components2/drawer_header.dart", | 51 "lib/framework/components2/drawer_header.dart", |
| 52 "lib/framework/components2/fixed_height_scrollable.dart", | 52 "lib/framework/components2/fixed_height_scrollable.dart", |
| 53 "lib/framework/components2/floating_action_button.dart", | 53 "lib/framework/components2/floating_action_button.dart", |
| 54 "lib/framework/components2/icon.dart", | 54 "lib/framework/components2/icon.dart", |
| 55 "lib/framework/components2/icon_button.dart", | 55 "lib/framework/components2/icon_button.dart", |
| 56 "lib/framework/components2/ink_splash.dart", | |
| 57 "lib/framework/components2/ink_well.dart", | 56 "lib/framework/components2/ink_well.dart", |
| 58 "lib/framework/components2/input.dart", | 57 "lib/framework/components2/input.dart", |
| 59 "lib/framework/components2/material.dart", | 58 "lib/framework/components2/material.dart", |
| 60 "lib/framework/components2/menu_divider.dart", | 59 "lib/framework/components2/menu_divider.dart", |
| 61 "lib/framework/components2/menu_item.dart", | 60 "lib/framework/components2/menu_item.dart", |
| 62 "lib/framework/components2/modal_overlay.dart", | 61 "lib/framework/components2/modal_overlay.dart", |
| 63 "lib/framework/components2/popup_menu.dart", | 62 "lib/framework/components2/popup_menu.dart", |
| 64 "lib/framework/components2/popup_menu_item.dart", | 63 "lib/framework/components2/popup_menu_item.dart", |
| 65 "lib/framework/components2/radio.dart", | 64 "lib/framework/components2/radio.dart", |
| 66 "lib/framework/components2/scaffold.dart", | 65 "lib/framework/components2/scaffold.dart", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "//sky/services/viewport", | 125 "//sky/services/viewport", |
| 127 ] | 126 ] |
| 128 | 127 |
| 129 datadeps = [ | 128 datadeps = [ |
| 130 "//sky/services/testing:bindings", | 129 "//sky/services/testing:bindings", |
| 131 "//sky/engine/bindings", | 130 "//sky/engine/bindings", |
| 132 ] | 131 ] |
| 133 | 132 |
| 134 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 133 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 135 } | 134 } |
| OLD | NEW |