summaryrefslogtreecommitdiffstats
path: root/chromecast/media/cma/backend/BUILD.gn
blob: 4f30a05e9b7a9975c941fb2042c5b12280d8d29b (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
# Copyright 2015 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("backend") {
  sources = [
    "audio_decoder_default.cc",
    "audio_decoder_default.h",
    "media_pipeline_backend_default.cc",
    "media_pipeline_backend_default.h",
    "video_decoder_default.cc",
    "video_decoder_default.h",
  ]

  public_deps = [
    "//chromecast/public",
    "//chromecast/public/media",
  ]

  deps = [
    "//base",
  ]

  configs += [ "//chromecast:config" ]
}