Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(755)

Side by Side Diff: webrtc/test/test.gyp

Issue 2267113002: GN: Fix test_support_unittests and MIPS compile issue. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move all metrics/ sources and remove metrics.gyp Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # TODO(andrew): consider moving test_support to src/base/test. 9 # TODO(andrew): consider moving test_support to src/base/test.
10 { 10 {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default', 120 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
121 ], 121 ],
122 }, 122 },
123 { 123 {
124 'target_name': 'test_support', 124 'target_name': 'test_support',
125 'type': 'static_library', 125 'type': 'static_library',
126 'dependencies': [ 126 'dependencies': [
127 '<(DEPTH)/testing/gtest.gyp:gtest', 127 '<(DEPTH)/testing/gtest.gyp:gtest',
128 '<(DEPTH)/testing/gmock.gyp:gmock', 128 '<(DEPTH)/testing/gmock.gyp:gmock',
129 '<(webrtc_root)/base/base.gyp:gtest_prod', 129 '<(webrtc_root)/base/base.gyp:gtest_prod',
130 '<(webrtc_root)/common_video/common_video.gyp:common_video',
130 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 131 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
131 ], 132 ],
132 'sources': [ 133 'sources': [
133 'testsupport/fileutils.cc', 134 'testsupport/fileutils.cc',
134 'testsupport/fileutils.h', 135 'testsupport/fileutils.h',
135 'testsupport/frame_reader.cc', 136 'testsupport/frame_reader.cc',
136 'testsupport/frame_reader.h', 137 'testsupport/frame_reader.h',
137 'testsupport/frame_writer.cc', 138 'testsupport/frame_writer.cc',
138 'testsupport/frame_writer.h', 139 'testsupport/frame_writer.h',
139 'testsupport/iosfileutils.mm', 140 'testsupport/iosfileutils.mm',
141 'testsupport/metrics/video_metrics.h',
142 'testsupport/metrics/video_metrics.cc',
140 'testsupport/mock/mock_frame_reader.h', 143 'testsupport/mock/mock_frame_reader.h',
141 'testsupport/mock/mock_frame_writer.h', 144 'testsupport/mock/mock_frame_writer.h',
142 'testsupport/packet_reader.cc', 145 'testsupport/packet_reader.cc',
143 'testsupport/packet_reader.h', 146 'testsupport/packet_reader.h',
144 'testsupport/perf_test.cc', 147 'testsupport/perf_test.cc',
145 'testsupport/perf_test.h', 148 'testsupport/perf_test.h',
146 'testsupport/trace_to_stderr.cc', 149 'testsupport/trace_to_stderr.cc',
147 'testsupport/trace_to_stderr.h', 150 'testsupport/trace_to_stderr.h',
148 ], 151 ],
149 'conditions': [ 152 'conditions': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'type': '<(gtest_target_type)', 203 'type': '<(gtest_target_type)',
201 'dependencies': [ 204 'dependencies': [
202 'channel_transport', 205 'channel_transport',
203 'test_common', 206 'test_common',
204 'test_support_main', 207 'test_support_main',
205 '<(webrtc_root)/modules/modules.gyp:video_capture', 208 '<(webrtc_root)/modules/modules.gyp:video_capture',
206 '<(DEPTH)/testing/gmock.gyp:gmock', 209 '<(DEPTH)/testing/gmock.gyp:gmock',
207 '<(DEPTH)/testing/gtest.gyp:gtest', 210 '<(DEPTH)/testing/gtest.gyp:gtest',
208 ], 211 ],
209 'sources': [ 212 'sources': [
213 'common_unittest.cc',
210 'fake_network_pipe_unittest.cc', 214 'fake_network_pipe_unittest.cc',
211 'frame_generator_unittest.cc', 215 'frame_generator_unittest.cc',
212 'rtp_file_reader_unittest.cc', 216 'rtp_file_reader_unittest.cc',
213 'rtp_file_writer_unittest.cc', 217 'rtp_file_writer_unittest.cc',
214 'channel_transport/udp_transport_unittest.cc', 218 'channel_transport/udp_transport_unittest.cc',
215 'channel_transport/udp_socket_manager_unittest.cc', 219 'channel_transport/udp_socket_manager_unittest.cc',
216 'channel_transport/udp_socket_wrapper_unittest.cc', 220 'channel_transport/udp_socket_wrapper_unittest.cc',
217 'testsupport/always_passing_unittest.cc', 221 'testsupport/always_passing_unittest.cc',
218 'testsupport/unittest_utils.h', 222 'testsupport/unittest_utils.h',
219 'testsupport/fileutils_unittest.cc', 223 'testsupport/fileutils_unittest.cc',
220 'testsupport/frame_reader_unittest.cc', 224 'testsupport/frame_reader_unittest.cc',
221 'testsupport/frame_writer_unittest.cc', 225 'testsupport/frame_writer_unittest.cc',
226 'testsupport/metrics/video_metrics_unittest.cc',
222 'testsupport/packet_reader_unittest.cc', 227 'testsupport/packet_reader_unittest.cc',
223 'testsupport/perf_test_unittest.cc', 228 'testsupport/perf_test_unittest.cc',
224 ], 229 ],
225 # Disable warnings to enable Win64 build, issue 1323. 230 # Disable warnings to enable Win64 build, issue 1323.
226 'msvs_disabled_warnings': [ 231 'msvs_disabled_warnings': [
227 4267, # size_t to int truncation. 232 4267, # size_t to int truncation.
228 ], 233 ],
229 'conditions': [ 234 'conditions': [
230 ['OS=="android"', { 235 ['OS=="android"', {
231 'dependencies': [ 236 'dependencies': [
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 '../build/isolate.gypi', 425 '../build/isolate.gypi',
421 ], 426 ],
422 'sources': [ 427 'sources': [
423 'test_support_unittests.isolate', 428 'test_support_unittests.isolate',
424 ], 429 ],
425 }, 430 },
426 ], 431 ],
427 }], 432 }],
428 ], 433 ],
429 } 434 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698