BUILD.gn 780 B

123456789101112131415161718192021222324252627282930313233
  1. # Copyright 2020 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. source_set("speech") {
  5. sources = [
  6. "chunked_byte_buffer.cc",
  7. "chunked_byte_buffer.h",
  8. "downstream_loader.cc",
  9. "downstream_loader.h",
  10. "downstream_loader_client.h",
  11. "upstream_loader.cc",
  12. "upstream_loader.h",
  13. "upstream_loader_client.h",
  14. ]
  15. deps = [
  16. "//mojo/public/cpp/bindings",
  17. "//mojo/public/cpp/platform",
  18. "//mojo/public/cpp/system",
  19. "//services/network/public/cpp",
  20. "//services/network/public/mojom",
  21. ]
  22. }
  23. source_set("unit_tests") {
  24. testonly = true
  25. sources = [ "chunked_byte_buffer_unittest.cc" ]
  26. deps = [
  27. ":speech",
  28. "//testing/gtest",
  29. ]
  30. }