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