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..f46bc2036cc38f24d462ebcd8f28f1cb90b6aa29 |
--- /dev/null |
+++ b/chromecast/media/cma/backend/BUILD.gn |
@@ -0,0 +1,34 @@ |
+# 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. |
+ |
+component("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 = [ |
+ "//chromecast/media/base", |
gunsch
2015/04/21 02:09:43
nit: alphabetize (here and throughout CL)
prashantv
2015/04/21 18:21:36
Done.
|
+ "//chromecast/media/cma/base", |
+ "//base", |
+ "//media", |
+ ] |
+} |