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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //media/cast:test_support | 8 # GN version: //media/cast:test_support |
9 'target_name': 'cast_test_utility', | 9 'target_name': 'cast_test_utility', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'sender/audio_sender_unittest.cc', | 114 'sender/audio_sender_unittest.cc', |
115 'sender/congestion_control_unittest.cc', | 115 'sender/congestion_control_unittest.cc', |
116 'sender/external_video_encoder_unittest.cc', | 116 'sender/external_video_encoder_unittest.cc', |
117 'sender/video_encoder_impl_unittest.cc', | 117 'sender/video_encoder_impl_unittest.cc', |
118 'sender/video_sender_unittest.cc', | 118 'sender/video_sender_unittest.cc', |
119 'test/end2end_unittest.cc', | 119 'test/end2end_unittest.cc', |
120 'test/fake_receiver_time_offset_estimator.cc', | 120 'test/fake_receiver_time_offset_estimator.cc', |
121 'test/fake_receiver_time_offset_estimator.h', | 121 'test/fake_receiver_time_offset_estimator.h', |
122 'test/fake_single_thread_task_runner.cc', | 122 'test/fake_single_thread_task_runner.cc', |
123 'test/fake_single_thread_task_runner.h', | 123 'test/fake_single_thread_task_runner.h', |
124 'test/fake_video_encode_accelerator.cc', | |
125 'test/fake_video_encode_accelerator.h', | |
126 'test/utility/audio_utility_unittest.cc', | 124 'test/utility/audio_utility_unittest.cc', |
127 'test/utility/barcode_unittest.cc', | 125 'test/utility/barcode_unittest.cc', |
128 ], # source | 126 ], # source |
129 }, | 127 }, |
130 { | 128 { |
131 'target_name': 'cast_benchmarks', | 129 'target_name': 'cast_benchmarks', |
132 'type': '<(gtest_target_type)', | 130 'type': '<(gtest_target_type)', |
133 'include_dirs': [ | 131 'include_dirs': [ |
134 '<(DEPTH)/', | 132 '<(DEPTH)/', |
135 ], | 133 ], |
136 'dependencies': [ | 134 'dependencies': [ |
137 'cast_base', | 135 'cast_base', |
138 'cast_net', | 136 'cast_net', |
139 'cast_receiver', | 137 'cast_receiver', |
140 'cast_sender', | 138 'cast_sender', |
141 'cast_test_utility', | 139 'cast_test_utility', |
142 '<(DEPTH)/base/base.gyp:test_support_base', | 140 '<(DEPTH)/base/base.gyp:test_support_base', |
143 '<(DEPTH)/net/net.gyp:net', | 141 '<(DEPTH)/net/net.gyp:net', |
144 '<(DEPTH)/testing/gtest.gyp:gtest', | 142 '<(DEPTH)/testing/gtest.gyp:gtest', |
145 ], | 143 ], |
146 'sources': [ | 144 'sources': [ |
147 'test/cast_benchmarks.cc', | 145 'test/cast_benchmarks.cc', |
148 'test/fake_single_thread_task_runner.cc', | 146 'test/fake_single_thread_task_runner.cc', |
149 'test/fake_single_thread_task_runner.h', | 147 'test/fake_single_thread_task_runner.h', |
150 'test/fake_video_encode_accelerator.cc', | |
151 'test/fake_video_encode_accelerator.h', | |
152 'test/utility/test_util.cc', | 148 'test/utility/test_util.cc', |
153 'test/utility/test_util.h', | 149 'test/utility/test_util.h', |
154 ], # source | 150 ], # source |
155 'conditions': [ | 151 'conditions': [ |
156 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', | 152 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', |
157 { | 153 { |
158 'dependencies': [ | 154 'dependencies': [ |
159 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 155 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
160 ], | 156 ], |
161 } | 157 } |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 '<(DEPTH)/testing/gtest.gyp:gtest', | 355 '<(DEPTH)/testing/gtest.gyp:gtest', |
360 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 356 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
361 ], | 357 ], |
362 'sources': [ | 358 'sources': [ |
363 'sender/h264_vt_encoder_unittest.cc', | 359 'sender/h264_vt_encoder_unittest.cc', |
364 ], | 360 ], |
365 }], # targets | 361 }], # targets |
366 }], # OS=="ios" or OS=="mac" | 362 }], # OS=="ios" or OS=="mac" |
367 ], # conditions | 363 ], # conditions |
368 } | 364 } |
OLD | NEW |