OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |