BUILD.gn 684 B

1234567891011121314151617181920212223242526272829303132
  1. # Copyright 2021 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. static_library("content") {
  5. sources = [
  6. "content_tracing_manager.cc",
  7. "content_tracing_manager.h",
  8. ]
  9. deps = [
  10. "//base",
  11. "//components/feedback",
  12. "//content/public/browser",
  13. "//content/public/common",
  14. ]
  15. }
  16. static_library("factory") {
  17. sources = [
  18. "feedback_uploader_factory.cc",
  19. "feedback_uploader_factory.h",
  20. ]
  21. deps = [
  22. "//base",
  23. "//components/feedback",
  24. "//components/keyed_service/content",
  25. "//content/public/browser",
  26. "//content/public/common",
  27. ]
  28. }