| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("sky") { | 5 group("sky") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 deps = [ | 8 deps = [ |
| 9 "//services/debugger", | 9 "//services/debugger", |
| 10 "//sky/engine/platform:platform_unittests", | 10 "//sky/engine/platform:platform_unittests", |
| 11 "//sky/engine/wtf:unittests", | 11 "//sky/engine/wtf:unittests", |
| 12 "//sky/sdk/example", | 12 "//sky/sdk/example", |
| 13 "//sky/tools/imagediff", | 13 "//sky/tools/imagediff", |
| 14 "//sky/tools/packager($host_toolchain)", | 14 "//sky/tools/packager($host_toolchain)", |
| 15 "//sky/viewer", | |
| 16 ":sky_dev", | 15 ":sky_dev", |
| 17 ] | 16 ] |
| 18 | 17 |
| 19 if (!is_android) { | 18 if (!is_android) { |
| 20 deps += [ "//third_party/mesa:osmesa" ] | 19 deps += [ "//third_party/mesa:osmesa" ] |
| 21 } | 20 } |
| 22 } | 21 } |
| 23 | 22 |
| 24 group("sky_dev") { | 23 group("sky_dev") { |
| 25 testonly = true | 24 testonly = true |
| 26 | 25 |
| 27 deps = [ | 26 deps = [ |
| 28 "//sky/sdk", | 27 "//sky/sdk", |
| 29 ] | 28 ] |
| 30 | 29 |
| 31 if (is_android) { | 30 if (is_android) { |
| 32 deps += [ "//sky/services/activity" ] | 31 deps += [ "//sky/services/activity" ] |
| 33 } | 32 } |
| 34 | 33 |
| 35 if (is_linux) { | 34 if (is_linux) { |
| 36 deps += [ "//sky/shell" ] | 35 deps += [ "//sky/shell" ] |
| 37 } | 36 } |
| 38 } | 37 } |
| OLD | NEW |