| 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", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "lib/sky_tool", | 88 "lib/sky_tool", |
| 89 "lib/theme/colors.dart", | 89 "lib/theme/colors.dart", |
| 90 "lib/theme/edges.dart", | 90 "lib/theme/edges.dart", |
| 91 "lib/theme/shadows.dart", | 91 "lib/theme/shadows.dart", |
| 92 "lib/theme/theme_data.dart", | 92 "lib/theme/theme_data.dart", |
| 93 "lib/theme/typography.dart", | 93 "lib/theme/typography.dart", |
| 94 "lib/theme/view_configuration.dart", | 94 "lib/theme/view_configuration.dart", |
| 95 "lib/widgets/animated_component.dart", | 95 "lib/widgets/animated_component.dart", |
| 96 "lib/widgets/basic.dart", | 96 "lib/widgets/basic.dart", |
| 97 "lib/widgets/button_base.dart", | 97 "lib/widgets/button_base.dart", |
| 98 "lib/widgets/card.dart", |
| 98 "lib/widgets/checkbox.dart", | 99 "lib/widgets/checkbox.dart", |
| 99 "lib/widgets/default_text_style.dart", | 100 "lib/widgets/default_text_style.dart", |
| 100 "lib/widgets/dialog.dart", | 101 "lib/widgets/dialog.dart", |
| 101 "lib/widgets/drawer.dart", | 102 "lib/widgets/drawer.dart", |
| 102 "lib/widgets/drawer_header.dart", | 103 "lib/widgets/drawer_header.dart", |
| 103 "lib/widgets/fixed_height_scrollable.dart", | 104 "lib/widgets/fixed_height_scrollable.dart", |
| 104 "lib/widgets/flat_button.dart", | 105 "lib/widgets/flat_button.dart", |
| 105 "lib/widgets/floating_action_button.dart", | 106 "lib/widgets/floating_action_button.dart", |
| 106 "lib/widgets/icon.dart", | 107 "lib/widgets/icon.dart", |
| 107 "lib/widgets/icon_button.dart", | 108 "lib/widgets/icon_button.dart", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 136 "//mojo/dart/mojo_services", | 137 "//mojo/dart/mojo_services", |
| 137 "//mojo/dart/mojom", | 138 "//mojo/dart/mojom", |
| 138 "//mojo/public/dart:mojo", | 139 "//mojo/public/dart:mojo", |
| 139 "//sky/engine/bindings", | 140 "//sky/engine/bindings", |
| 140 "//sky/services/testing", | 141 "//sky/services/testing", |
| 141 "//third_party/dart-pkg", | 142 "//third_party/dart-pkg", |
| 142 ] | 143 ] |
| 143 | 144 |
| 144 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 145 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 145 } | 146 } |
| OLD | NEW |