summaryrefslogtreecommitdiff
path: root/chromium/components/feedback/content/BUILD.gn
blob: dc5d5b6b0293903a1506637cd24b1934df13d81f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("content") {
  sources = [
    "content_tracing_manager.cc",
    "content_tracing_manager.h",
  ]

  deps = [
    "//base",
    "//components/feedback",
    "//content/public/browser",
    "//content/public/common",
  ]
}

static_library("factory") {
  sources = [
    "feedback_uploader_factory.cc",
    "feedback_uploader_factory.h",
  ]

  deps = [
    "//base",
    "//components/feedback",
    "//components/keyed_service/content",
    "//content/public/browser",
    "//content/public/common",
  ]
}