• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3# found in the LICENSE file.
4
5group("public") {
6  # Meta-target, don't link into production code.
7  testonly = true
8  deps = [
9    ":sdk",
10    "cpp/bindings",
11    "interfaces/bindings/tests:test_interfaces",
12  ]
13
14  if (is_android) {
15    deps += [
16      "java:bindings_java",
17      "java:system_java",
18    ]
19  }
20}
21
22group("sdk") {
23  deps = [
24    "c/system",
25    "cpp/bindings",
26  ]
27}
28
29group("fuzzers") {
30  deps = [
31    "tools/fuzzers",
32  ]
33}
34