mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
29 lines
756 B
Plaintext
29 lines
756 B
Plaintext
# 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",
|
|
]
|
|
}
|