summaryrefslogtreecommitdiffstats
path: root/chromecast/media/cma/ipc_streamer/BUILD.gn
blob: a3429d641f5095041269a00096a5bf2c2a7ce38e (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
# 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("ipc_streamer") {
  sources = [
    "audio_decoder_config_marshaller.cc",
    "audio_decoder_config_marshaller.h",
    "av_streamer_proxy.cc",
    "av_streamer_proxy.h",
    "coded_frame_provider_host.cc",
    "coded_frame_provider_host.h",
    "decoder_buffer_base_marshaller.cc",
    "decoder_buffer_base_marshaller.h",
    "decrypt_config_marshaller.cc",
    "decrypt_config_marshaller.h",
    "video_decoder_config_marshaller.cc",
    "video_decoder_config_marshaller.h",
  ]

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

  deps = [
    "//base",
    "//chromecast/media/cma/base",
    "//chromecast/media/cma/ipc",
    "//media",
    "//ui/gfx/geometry",
  ]
}