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

Side by Side Diff: webrtc/test/BUILD.gn

Issue 2362683002: New helper function test::ReadI420Buffer, refactor FrameReader to use it. (Closed)
Patch Set: Another try to fix the 64-bit windows build. Created 4 years, 2 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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "testsupport/mock/mock_frame_writer.h", 119 "testsupport/mock/mock_frame_writer.h",
120 "testsupport/packet_reader.cc", 120 "testsupport/packet_reader.cc",
121 "testsupport/packet_reader.h", 121 "testsupport/packet_reader.h",
122 "testsupport/perf_test.cc", 122 "testsupport/perf_test.cc",
123 "testsupport/perf_test.h", 123 "testsupport/perf_test.h",
124 "testsupport/trace_to_stderr.cc", 124 "testsupport/trace_to_stderr.cc",
125 "testsupport/trace_to_stderr.h", 125 "testsupport/trace_to_stderr.h",
126 ] 126 ]
127 127
128 deps = [ 128 deps = [
129 ":video_test_common",
129 "../base:gtest_prod", 130 "../base:gtest_prod",
130 "../common_video", 131 "../common_video",
131 "../system_wrappers", 132 "../system_wrappers",
132 "//testing/gmock", 133 "//testing/gmock",
133 "//testing/gtest", 134 "//testing/gtest",
134 ] 135 ]
135 136
136 if (is_clang) { 137 if (is_clang) {
137 # Suppress warnings from the Chromium Clang plugin. 138 # Suppress warnings from the Chromium Clang plugin.
138 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 139 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 311
311 if (is_clang && !is_nacl) { 312 if (is_clang && !is_nacl) {
312 # Suppress warnings from the Chromium Clang plugin. 313 # Suppress warnings from the Chromium Clang plugin.
313 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 314 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
314 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 315 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
315 } 316 }
316 317
317 deps = [ 318 deps = [
318 ":rtp_test_utils", 319 ":rtp_test_utils",
319 ":test_support", 320 ":test_support",
320 ":video_test_common",
321 "..:webrtc_common", 321 "..:webrtc_common",
322 "../audio", 322 "../audio",
323 "../base:rtc_base_approved", 323 "../base:rtc_base_approved",
324 "../call", 324 "../call",
325 "../modules/media_file", 325 "../modules/media_file",
326 "../video", 326 "../video",
327 "//testing/gmock", 327 "//testing/gmock",
328 "//testing/gtest", 328 "//testing/gtest",
329 ] 329 ]
330 } 330 }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 395 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
396 } 396 }
397 397
398 deps = [ 398 deps = [
399 ":test_support", 399 ":test_support",
400 ":video_test_common", 400 ":video_test_common",
401 "../modules/media_file", 401 "../modules/media_file",
402 "//testing/gtest", 402 "//testing/gtest",
403 ] 403 ]
404 } 404 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/test/video_processing_unittest.cc ('k') | webrtc/test/frame_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698