summaryrefslogtreecommitdiff
path: root/chromium/components/webrtc_logging/browser/BUILD.gn
blob: a82ed798cd6f8da27ea2949af3acff08232583a6 (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
33
34
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//media/media_options.gni")

assert(enable_webrtc)

source_set("browser") {
  sources = [
    "log_cleanup.cc",
    "log_cleanup.h",
    "text_log_list.cc",
    "text_log_list.h",
  ]

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

source_set("unit_tests") {
  testonly = true
  sources = [ "log_cleanup_unittest.cc" ]
  deps = [
    ":browser",
    "//base",
    "//base/test:test_support",
    "//content/test:test_support",
    "//testing/gtest",
  ]
}