summaryrefslogtreecommitdiffstats
path: root/chromecast/media/cma/backend/BUILD.gn
blob: 618481a015901ff6fd3b6c97f9ab24a811c3aaa1 (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
# 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",
    "audio_decoder_wrapper.cc",
    "audio_decoder_wrapper.h",
    "media_pipeline_backend_default.cc",
    "media_pipeline_backend_default.h",
    "media_pipeline_backend_manager.cc",
    "media_pipeline_backend_manager.h",
    "media_pipeline_backend_wrapper.cc",
    "media_pipeline_backend_wrapper.h",
    "video_decoder_default.cc",
    "video_decoder_default.h",
  ]

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

  deps = [
    "//base",
    "//chromecast/media/base:message_loop",
  ]
}