BUILD.gn 674 字节
Newer Older
A
Adam Barth 已提交
1 2 3 4 5 6 7 8 9 10
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

group("sky") {
  testonly = true

  deps = [
    "//sky/engine/platform:platform_unittests",
    "//sky/engine/wtf:unittests",
11
    "//sky/sdk/example",
12
    "//sky/tools/imagediff",
13
    "//sky/tools/packager($host_toolchain)",
C
Collin Jackson 已提交
14
    ":sky_dev",
A
Adam Barth 已提交
15
  ]
16

J
James Robinson 已提交
17 18 19
  if (!is_android) {
    deps += [ "//third_party/mesa:osmesa" ]
  }
A
Adam Barth 已提交
20
}
21

C
Collin Jackson 已提交
22
group("sky_dev") {
23 24 25 26 27 28 29
  testonly = true

  deps = [
    "//sky/sdk",
  ]

  if (is_android) {
30
    deps += [ "//sky/services/activity" ]
31
  }
A
Adam Barth 已提交
32 33 34 35

  if (is_linux) {
    deps += [ "//sky/shell" ]
  }
36
}