| Index: chromecast/media/cma/backend/BUILD.gn
|
| diff --git a/chromecast/media/cma/backend/BUILD.gn b/chromecast/media/cma/backend/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6526a1f746b8f04b1d90dadcf160953e67c2d957
|
| --- /dev/null
|
| +++ b/chromecast/media/cma/backend/BUILD.gn
|
| @@ -0,0 +1,37 @@
|
| +# 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_pipeline_device.cc",
|
| + "audio_pipeline_device.h",
|
| + "media_clock_device.cc",
|
| + "media_clock_device.h",
|
| + "media_component_device.cc",
|
| + "media_component_device.h",
|
| + "media_pipeline_device.cc",
|
| + "media_pipeline_device.h",
|
| + "media_pipeline_device_fake.cc",
|
| + "media_pipeline_device_fake.h",
|
| + "media_pipeline_device_fake_factory.cc",
|
| + "media_pipeline_device_params.cc",
|
| + "media_pipeline_device_params.h",
|
| + "video_pipeline_device.cc",
|
| + "video_pipeline_device.h",
|
| + "video_plane.cc",
|
| + "video_plane.h",
|
| + "video_plane_fake.cc",
|
| + "video_plane_fake.h",
|
| + "video_plane_fake_factory.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//chromecast/media/base",
|
| + "//chromecast/media/cma/base",
|
| + "//media",
|
| + ]
|
| +
|
| + configs += [ "//chromecast:config" ]
|
| +}
|
|
|