OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromecast_branding%': 'Chromium', | 7 'chromecast_branding%': 'Chromium', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'cma/backend/media_component_device.cc', | 101 'cma/backend/media_component_device.cc', |
102 'cma/backend/media_component_device.h', | 102 'cma/backend/media_component_device.h', |
103 'cma/backend/media_pipeline_device.cc', | 103 'cma/backend/media_pipeline_device.cc', |
104 'cma/backend/media_pipeline_device.h', | 104 'cma/backend/media_pipeline_device.h', |
105 'cma/backend/media_pipeline_device_fake.cc', | 105 'cma/backend/media_pipeline_device_fake.cc', |
106 'cma/backend/media_pipeline_device_fake.h', | 106 'cma/backend/media_pipeline_device_fake.h', |
107 'cma/backend/media_pipeline_device_params.cc', | 107 'cma/backend/media_pipeline_device_params.cc', |
108 'cma/backend/media_pipeline_device_params.h', | 108 'cma/backend/media_pipeline_device_params.h', |
109 'cma/backend/video_pipeline_device.cc', | 109 'cma/backend/video_pipeline_device.cc', |
110 'cma/backend/video_pipeline_device.h', | 110 'cma/backend/video_pipeline_device.h', |
| 111 'cma/backend/video_plane.cc', |
| 112 'cma/backend/video_plane.h', |
| 113 'cma/backend/video_plane_fake.cc', |
| 114 'cma/backend/video_plane_fake.h', |
111 ], | 115 ], |
112 'conditions': [ | 116 'conditions': [ |
113 ['chromecast_branding=="Chrome"', { | 117 ['chromecast_branding=="Chrome"', { |
114 'dependencies': [ | 118 'dependencies': [ |
115 '<(cast_internal_gyp):cma_backend_internal', | 119 '<(cast_internal_gyp):cma_backend_internal', |
116 ], | 120 ], |
117 }, { | 121 }, { |
118 'sources': [ | 122 'sources': [ |
119 'cma/backend/media_pipeline_device_fake_factory.cc', | 123 'cma/backend/media_pipeline_device_fake_factory.cc', |
| 124 'cma/backend/video_plane_fake_factory.cc', |
120 ], | 125 ], |
121 }], | 126 }], |
122 ], | 127 ], |
123 }, | 128 }, |
124 { | 129 { |
125 'target_name': 'cma_ipc', | 130 'target_name': 'cma_ipc', |
126 'type': '<(component)', | 131 'type': '<(component)', |
127 'dependencies': [ | 132 'dependencies': [ |
128 '../../base/base.gyp:base', | 133 '../../base/base.gyp:base', |
129 ], | 134 ], |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 'cma/test/media_component_device_feeder_for_test.h', | 272 'cma/test/media_component_device_feeder_for_test.h', |
268 'cma/test/mock_frame_consumer.cc', | 273 'cma/test/mock_frame_consumer.cc', |
269 'cma/test/mock_frame_consumer.h', | 274 'cma/test/mock_frame_consumer.h', |
270 'cma/test/mock_frame_provider.cc', | 275 'cma/test/mock_frame_provider.cc', |
271 'cma/test/mock_frame_provider.h', | 276 'cma/test/mock_frame_provider.h', |
272 'cma/test/run_all_unittests.cc', | 277 'cma/test/run_all_unittests.cc', |
273 ], | 278 ], |
274 }, | 279 }, |
275 ], | 280 ], |
276 } | 281 } |
OLD | NEW |