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