summaryrefslogtreecommitdiffstats
path: root/chromecast/media/cma/backend/BUILD.gn
blob: fc72d023d8687351a13a9ddabfce7c246e840952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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",
  ]
}