summaryrefslogtreecommitdiff
path: root/chromium/components/cdm/browser/BUILD.gn
blob: 598849388fd9bd74a445aca9ea4ce5f12047045e (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
35
36
37
38
39
40
41
# Copyright 2014 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.

source_set("browser") {
  sources = [
    "cdm_message_filter_android.cc",
    "cdm_message_filter_android.h",
    "media_drm_storage_impl.cc",
    "media_drm_storage_impl.h",
  ]

  public_deps = [
    "//base",
    "//content/public/browser",
    "//media/mojo/interfaces",
    "//url",
  ]

  deps = [
    "//components/cdm/common",
    "//components/prefs",
    "//content/public/common",
    "//ipc",
    "//media",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "media_drm_storage_impl_unittest.cc",
  ]
  deps = [
    ":browser",
    "//base/test:test_support",
    "//components/prefs:test_support",
    "//media/mojo/services",
    "//testing/gtest",
  ]
}