| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "lib/framework/node.dart", | 62 "lib/framework/node.dart", |
| 63 "lib/framework/reflect.dart", | 63 "lib/framework/reflect.dart", |
| 64 "lib/framework/shell.dart", | 64 "lib/framework/shell.dart", |
| 65 "lib/framework/theme/colors.dart", | 65 "lib/framework/theme/colors.dart", |
| 66 "lib/framework/theme/shadows.dart", | 66 "lib/framework/theme/shadows.dart", |
| 67 "lib/framework/theme/typography.dart", | 67 "lib/framework/theme/typography.dart", |
| 68 "lib/framework/theme/view_configuration.dart", | 68 "lib/framework/theme/view_configuration.dart", |
| 69 "lib/internals.dart", | 69 "lib/internals.dart", |
| 70 "lib/painting/box_painter.dart", | 70 "lib/painting/box_painter.dart", |
| 71 "lib/painting/shadows.dart", | 71 "lib/painting/shadows.dart", |
| 72 "lib/painting/text_style.dart", |
| 72 "lib/rendering/block.dart", | 73 "lib/rendering/block.dart", |
| 73 "lib/rendering/box.dart", | 74 "lib/rendering/box.dart", |
| 74 "lib/rendering/flex.dart", | 75 "lib/rendering/flex.dart", |
| 75 "lib/rendering/object.dart", | 76 "lib/rendering/object.dart", |
| 76 "lib/rendering/paragraph.dart", | 77 "lib/rendering/paragraph.dart", |
| 77 "lib/rendering/stack.dart", | 78 "lib/rendering/stack.dart", |
| 78 "lib/sky_tool", | 79 "lib/sky_tool", |
| 79 "lib/theme2/colors.dart", | 80 "lib/theme2/colors.dart", |
| 80 "lib/theme2/edges.dart", | 81 "lib/theme2/edges.dart", |
| 81 "lib/theme2/shadows.dart", | 82 "lib/theme2/shadows.dart", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "//sky/services/viewport", | 119 "//sky/services/viewport", |
| 119 ] | 120 ] |
| 120 | 121 |
| 121 datadeps = [ | 122 datadeps = [ |
| 122 "//sky/services/testing:bindings", | 123 "//sky/services/testing:bindings", |
| 123 "//sky/engine/bindings", | 124 "//sky/engine/bindings", |
| 124 ] | 125 ] |
| 125 | 126 |
| 126 sdk_ext_directory = "$root_gen_dir/sky/bindings" | 127 sdk_ext_directory = "$root_gen_dir/sky/bindings" |
| 127 } | 128 } |
| OLD | NEW |