naiveproxy/chromecast/media/cma/backend/desktop/BUILD.gn

29 lines
756 B
Plaintext
Raw Normal View History

2018-12-10 05:59:24 +03:00
# Copyright 2017 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.
import("//chromecast/chromecast.gni")
# Default implementation of media backend used on desktop builds for tests.
cast_source_set("desktop") {
sources = [
"audio_decoder_desktop.cc",
"audio_decoder_desktop.h",
"cast_media_desktop.cc",
"media_pipeline_backend_desktop.cc",
"media_pipeline_backend_desktop.h",
"media_sink_desktop.cc",
"media_sink_desktop.h",
"video_decoder_desktop.cc",
"video_decoder_desktop.h",
"volume_control_desktop.cc",
]
deps = [
"//base",
"//chromecast/base",
"//chromecast/public/media",
"//media",
]
}