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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 "testsupport/mock/mock_frame_writer.h", | 198 "testsupport/mock/mock_frame_writer.h", |
199 "testsupport/y4m_frame_writer.cc", | 199 "testsupport/y4m_frame_writer.cc", |
200 "testsupport/yuv_frame_reader.cc", | 200 "testsupport/yuv_frame_reader.cc", |
201 "testsupport/yuv_frame_writer.cc", | 201 "testsupport/yuv_frame_writer.cc", |
202 ] | 202 ] |
203 | 203 |
204 deps = [ | 204 deps = [ |
205 ":test_support", | 205 ":test_support", |
206 ":video_test_common", | 206 ":video_test_common", |
207 "..:webrtc_common", | 207 "..:webrtc_common", |
| 208 "../api:video_frame_api", |
208 "../common_video", | 209 "../common_video", |
209 "../rtc_base:rtc_base_approved", | 210 "../rtc_base:rtc_base_approved", |
210 "../system_wrappers", | 211 "../system_wrappers", |
211 "//testing/gmock", | 212 "//testing/gmock", |
212 "//testing/gtest", | 213 "//testing/gtest", |
213 "//third_party/gflags", | 214 "//third_party/gflags", |
214 ] | 215 ] |
215 | 216 |
| 217 if (!is_ios) { |
| 218 deps += [ "//third_party:jpeg" ] |
| 219 sources += [ "testsupport/jpeg_frame_writer.cc" ] |
| 220 } |
| 221 |
216 public_deps = [ | 222 public_deps = [ |
217 ":fileutils", | 223 ":fileutils", |
218 ] | 224 ] |
219 | 225 |
220 if (!build_with_chromium && is_clang) { | 226 if (!build_with_chromium && is_clang) { |
221 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
222 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
223 } | 229 } |
224 | 230 |
225 if (is_android) { | 231 if (is_android) { |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 java_files = [ | 610 java_files = [ |
605 "android/org/webrtc/native_test/RTCNativeUnitTest.java", | 611 "android/org/webrtc/native_test/RTCNativeUnitTest.java", |
606 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", | 612 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", |
607 ] | 613 ] |
608 deps = [ | 614 deps = [ |
609 "../rtc_base:base_java", | 615 "../rtc_base:base_java", |
610 "//testing/android/native_test:native_test_java", | 616 "//testing/android/native_test:native_test_java", |
611 ] | 617 ] |
612 } | 618 } |
613 } | 619 } |
OLD | NEW |