| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "lib/framework/layout.dart", | 64 "lib/framework/layout.dart", |
| 65 "lib/framework/net/fetch.dart", | 65 "lib/framework/net/fetch.dart", |
| 66 "lib/framework/node.dart", | 66 "lib/framework/node.dart", |
| 67 "lib/framework/reflect.dart", | 67 "lib/framework/reflect.dart", |
| 68 "lib/framework/shell.dart", | 68 "lib/framework/shell.dart", |
| 69 "lib/framework/theme/colors.dart", | 69 "lib/framework/theme/colors.dart", |
| 70 "lib/framework/theme/shadows.dart", | 70 "lib/framework/theme/shadows.dart", |
| 71 "lib/framework/theme/typography.dart", | 71 "lib/framework/theme/typography.dart", |
| 72 "lib/framework/theme/view_configuration.dart", | 72 "lib/framework/theme/view_configuration.dart", |
| 73 "lib/internals.dart", | 73 "lib/internals.dart", |
| 74 "lib/mojo/asset_bundle.dart", |
| 74 "lib/mojo/embedder.dart", | 75 "lib/mojo/embedder.dart", |
| 75 "lib/mojo/net/fetch.dart", | 76 "lib/mojo/net/fetch.dart", |
| 76 "lib/mojo/net/image_cache.dart", | 77 "lib/mojo/net/image_cache.dart", |
| 77 "lib/mojo/shell.dart", | 78 "lib/mojo/shell.dart", |
| 78 "lib/painting/box_painter.dart", | 79 "lib/painting/box_painter.dart", |
| 79 "lib/painting/shadows.dart", | 80 "lib/painting/shadows.dart", |
| 80 "lib/painting/text_style.dart", | 81 "lib/painting/text_style.dart", |
| 81 "lib/rendering/block.dart", | 82 "lib/rendering/block.dart", |
| 82 "lib/rendering/box.dart", | 83 "lib/rendering/box.dart", |
| 83 "lib/rendering/flex.dart", | 84 "lib/rendering/flex.dart", |
| (...skipping 44 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 |