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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 ], | 127 ], |
128 }, | 128 }, |
129 { | 129 { |
130 'target_name': 'cast_media_unittests', | 130 'target_name': 'cast_media_unittests', |
131 'type': '<(gtest_target_type)', | 131 'type': '<(gtest_target_type)', |
132 'dependencies': [ | 132 'dependencies': [ |
133 'cast_media', | 133 'cast_media', |
134 '../../base/base.gyp:base', | 134 '../../base/base.gyp:base', |
135 '../../base/base.gyp:base_i18n', | 135 '../../base/base.gyp:base_i18n', |
136 '../../base/base.gyp:test_support_base', | 136 '../../base/base.gyp:test_support_base', |
| 137 '../../media/media.gyp:media_test_support', |
137 '../../testing/gmock.gyp:gmock', | 138 '../../testing/gmock.gyp:gmock', |
138 '../../testing/gtest.gyp:gtest', | 139 '../../testing/gtest.gyp:gtest', |
139 '../../testing/gtest.gyp:gtest_main', | 140 '../../testing/gtest.gyp:gtest_main', |
140 ], | 141 ], |
141 'sources': [ | 142 'sources': [ |
142 'cma/base/balanced_media_task_runner_unittest.cc', | 143 'cma/base/balanced_media_task_runner_unittest.cc', |
143 'cma/base/buffering_controller_unittest.cc', | 144 'cma/base/buffering_controller_unittest.cc', |
144 'cma/base/buffering_frame_provider_unittest.cc', | 145 'cma/base/buffering_frame_provider_unittest.cc', |
145 'cma/base/frame_generator_for_test.cc', | |
146 'cma/base/frame_generator_for_test.h', | |
147 'cma/base/mock_frame_consumer.cc', | |
148 'cma/base/mock_frame_consumer.h', | |
149 'cma/base/mock_frame_provider.cc', | |
150 'cma/base/mock_frame_provider.h', | |
151 'cma/base/run_all_unittests.cc', | |
152 'cma/filters/demuxer_stream_adapter_unittest.cc', | 146 'cma/filters/demuxer_stream_adapter_unittest.cc', |
153 'cma/ipc/media_message_fifo_unittest.cc', | 147 'cma/ipc/media_message_fifo_unittest.cc', |
154 'cma/ipc/media_message_unittest.cc', | 148 'cma/ipc/media_message_unittest.cc', |
155 'cma/ipc_streamer/av_streamer_unittest.cc', | 149 'cma/ipc_streamer/av_streamer_unittest.cc', |
| 150 'cma/test/frame_generator_for_test.cc', |
| 151 'cma/test/frame_generator_for_test.h', |
| 152 'cma/test/frame_segmenter_for_test.cc', |
| 153 'cma/test/frame_segmenter_for_test.h', |
| 154 'cma/test/mock_frame_consumer.cc', |
| 155 'cma/test/mock_frame_consumer.h', |
| 156 'cma/test/mock_frame_provider.cc', |
| 157 'cma/test/mock_frame_provider.h', |
| 158 'cma/test/run_all_unittests.cc', |
156 ], | 159 ], |
157 }, | 160 }, |
158 ], | 161 ], |
159 } | 162 } |
OLD | NEW |