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 21 matching lines...) Expand all Loading... |
32 'sources': [ | 32 'sources': [ |
33 'base/key_systems_common_simple.cc', | 33 'base/key_systems_common_simple.cc', |
34 ], | 34 ], |
35 }], | 35 }], |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | 38 { |
39 'target_name': 'cma_base', | 39 'target_name': 'cma_base', |
40 'type': '<(component)', | 40 'type': '<(component)', |
41 'dependencies': [ | 41 'dependencies': [ |
| 42 '../chromecast.gyp:cast_base', |
42 '../../base/base.gyp:base', | 43 '../../base/base.gyp:base', |
43 '../../media/media.gyp:media', | 44 '../../media/media.gyp:media', |
44 ], | 45 ], |
45 'include_dirs': [ | 46 'include_dirs': [ |
46 '../..', | 47 '../..', |
47 ], | 48 ], |
48 'sources': [ | 49 'sources': [ |
49 'cma/base/balanced_media_task_runner_factory.cc', | 50 'cma/base/balanced_media_task_runner_factory.cc', |
50 'cma/base/balanced_media_task_runner_factory.h', | 51 'cma/base/balanced_media_task_runner_factory.h', |
51 'cma/base/buffering_controller.cc', | 52 'cma/base/buffering_controller.cc', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ], | 169 ], |
169 }, | 170 }, |
170 { | 171 { |
171 'target_name': 'cast_media_unittests', | 172 'target_name': 'cast_media_unittests', |
172 'type': '<(gtest_target_type)', | 173 'type': '<(gtest_target_type)', |
173 'dependencies': [ | 174 'dependencies': [ |
174 'cast_media', | 175 'cast_media', |
175 '../../base/base.gyp:base', | 176 '../../base/base.gyp:base', |
176 '../../base/base.gyp:base_i18n', | 177 '../../base/base.gyp:base_i18n', |
177 '../../base/base.gyp:test_support_base', | 178 '../../base/base.gyp:test_support_base', |
| 179 '../../chromecast/chromecast.gyp:cast_metrics_test_support', |
178 '../../media/media.gyp:media_test_support', | 180 '../../media/media.gyp:media_test_support', |
179 '../../testing/gmock.gyp:gmock', | 181 '../../testing/gmock.gyp:gmock', |
180 '../../testing/gtest.gyp:gtest', | 182 '../../testing/gtest.gyp:gtest', |
181 '../../testing/gtest.gyp:gtest_main', | 183 '../../testing/gtest.gyp:gtest_main', |
182 ], | 184 ], |
183 'sources': [ | 185 'sources': [ |
184 'cma/backend/audio_video_pipeline_device_unittest.cc', | 186 'cma/backend/audio_video_pipeline_device_unittest.cc', |
185 'cma/base/balanced_media_task_runner_unittest.cc', | 187 'cma/base/balanced_media_task_runner_unittest.cc', |
186 'cma/base/buffering_controller_unittest.cc', | 188 'cma/base/buffering_controller_unittest.cc', |
187 'cma/base/buffering_frame_provider_unittest.cc', | 189 'cma/base/buffering_frame_provider_unittest.cc', |
188 'cma/filters/demuxer_stream_adapter_unittest.cc', | 190 'cma/filters/demuxer_stream_adapter_unittest.cc', |
189 'cma/ipc/media_message_fifo_unittest.cc', | 191 'cma/ipc/media_message_fifo_unittest.cc', |
190 'cma/ipc/media_message_unittest.cc', | 192 'cma/ipc/media_message_unittest.cc', |
191 'cma/ipc_streamer/av_streamer_unittest.cc', | 193 'cma/ipc_streamer/av_streamer_unittest.cc', |
192 'cma/test/frame_generator_for_test.cc', | 194 'cma/test/frame_generator_for_test.cc', |
193 'cma/test/frame_generator_for_test.h', | 195 'cma/test/frame_generator_for_test.h', |
194 'cma/test/frame_segmenter_for_test.cc', | 196 'cma/test/frame_segmenter_for_test.cc', |
195 'cma/test/frame_segmenter_for_test.h', | 197 'cma/test/frame_segmenter_for_test.h', |
196 'cma/test/media_component_device_feeder_for_test.cc', | 198 'cma/test/media_component_device_feeder_for_test.cc', |
197 'cma/test/media_component_device_feeder_for_test.h', | 199 'cma/test/media_component_device_feeder_for_test.h', |
198 'cma/test/mock_frame_consumer.cc', | 200 'cma/test/mock_frame_consumer.cc', |
199 'cma/test/mock_frame_consumer.h', | 201 'cma/test/mock_frame_consumer.h', |
200 'cma/test/mock_frame_provider.cc', | 202 'cma/test/mock_frame_provider.cc', |
201 'cma/test/mock_frame_provider.h', | 203 'cma/test/mock_frame_provider.h', |
202 'cma/test/run_all_unittests.cc', | 204 'cma/test/run_all_unittests.cc', |
203 ], | 205 ], |
204 }, | 206 }, |
205 ], | 207 ], |
206 } | 208 } |
OLD | NEW |