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("sky") { | 7 dart_pkg("sky") { |
8 sources = [ | 8 sources = [ |
9 "CHANGELOG.md", | 9 "CHANGELOG.md", |
10 "bin/init.dart", | 10 "bin/init.dart", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "lib/widgets/tabs.dart", | 80 "lib/widgets/tabs.dart", |
81 "lib/widgets/theme.dart", | 81 "lib/widgets/theme.dart", |
82 "lib/widgets/toggleable.dart", | 82 "lib/widgets/toggleable.dart", |
83 "lib/widgets/tool_bar.dart", | 83 "lib/widgets/tool_bar.dart", |
84 "lib/widgets/widget.dart", | 84 "lib/widgets/widget.dart", |
85 "pubspec.yaml", | 85 "pubspec.yaml", |
86 ] | 86 ] |
87 | 87 |
88 # List of mojom targets that the sky pkg exports | 88 # List of mojom targets that the sky pkg exports |
89 deps = [ | 89 deps = [ |
90 "//sky/services/viewport", | 90 "//sky/services/engine", |
91 ] | 91 ] |
92 | 92 |
93 datadeps = [ | 93 datadeps = [ |
94 "//mojo/dart/mojo_services", | 94 "//mojo/dart/mojo_services", |
95 "//mojo/dart/mojom", | 95 "//mojo/dart/mojom", |
96 "//mojo/public/dart:mojo", | 96 "//mojo/public/dart:mojo", |
97 "//sky/engine/bindings", | 97 "//sky/engine/bindings", |
98 "//sky/services/testing", | 98 "//sky/services/testing", |
99 "//third_party/dart-pkg", | 99 "//third_party/dart-pkg", |
100 ] | 100 ] |
(...skipping 26 matching lines...) Expand all Loading... |
127 ":sky", | 127 ":sky", |
128 ] | 128 ] |
129 } | 129 } |
130 | 130 |
131 group("sdk") { | 131 group("sdk") { |
132 deps = [ | 132 deps = [ |
133 ":sky", | 133 ":sky", |
134 ":material_design_icons", | 134 ":material_design_icons", |
135 ] | 135 ] |
136 } | 136 } |
OLD | NEW |