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 group("apps") { | 5 import("//sky/build/skyx.gni") |
| 6 |
| 7 skyx("sector") { |
| 8 main_dart = "sector.dart" |
| 9 } |
| 10 |
| 11 skyx("piano") { |
| 12 main_dart = "piano.dart" |
| 13 } |
| 14 |
| 15 group("widgets") { |
6 testonly = true | 16 testonly = true |
7 | 17 |
8 deps = [ | 18 deps = [ |
9 "//apps/moterm", | 19 ":sector", |
10 "//apps/moterm:apptests", | 20 ":piano", |
11 "//apps/moterm:gl_helper_test_app", | |
12 "//apps/moterm:moterm_example_app", | |
13 ] | 21 ] |
14 } | 22 } |
OLD | NEW |