BUILD.gn 593 B

1234567891011121314151617181920212223242526272829303132
  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. group("public") {
  5. # Meta-target, don't link into production code.
  6. testonly = true
  7. deps = [
  8. ":sdk",
  9. "cpp/bindings",
  10. "cpp/test:test_mojom",
  11. "interfaces/bindings/tests:test_interfaces",
  12. ]
  13. if (is_android) {
  14. deps += [
  15. "java:bindings_java",
  16. "java:system_java",
  17. ]
  18. }
  19. }
  20. group("sdk") {
  21. deps = [
  22. "c/system",
  23. "cpp/bindings",
  24. ]
  25. }
  26. group("fuzzers") {
  27. deps = [ "tools/fuzzers" ]
  28. }