BUILD.gn 580 B

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright 2016 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. import("//testing/libfuzzer/fuzzer_test.gni")
  5. static_library("base32") {
  6. sources = [
  7. "base32.cc",
  8. "base32.h",
  9. ]
  10. deps = [ "//base" ]
  11. }
  12. source_set("unit_tests") {
  13. testonly = true
  14. sources = [ "base32_unittest.cc" ]
  15. deps = [
  16. ":base32",
  17. "//base",
  18. "//testing/gtest",
  19. ]
  20. }
  21. fuzzer_test("base32_fuzzer") {
  22. sources = [ "base32_fuzzer.cc" ]
  23. deps = [
  24. ":base32",
  25. "//base",
  26. ]
  27. }