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

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

Issue 2990563002: Add Jpeg frame writer for test support. (Closed)
Patch Set: Implemented Sprang@ comments. Created 3 years, 4 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
« no previous file with comments | « no previous file | webrtc/test/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("../webrtc.gni") 9 import("../webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "testsupport/mock/mock_frame_writer.h", 200 "testsupport/mock/mock_frame_writer.h",
201 "testsupport/y4m_frame_writer.cc", 201 "testsupport/y4m_frame_writer.cc",
202 "testsupport/yuv_frame_reader.cc", 202 "testsupport/yuv_frame_reader.cc",
203 "testsupport/yuv_frame_writer.cc", 203 "testsupport/yuv_frame_writer.cc",
204 ] 204 ]
205 205
206 deps = [ 206 deps = [
207 ":test_support", 207 ":test_support",
208 ":video_test_common", 208 ":video_test_common",
209 "..:webrtc_common", 209 "..:webrtc_common",
210 "../api:video_frame_api",
210 "../common_video", 211 "../common_video",
211 "../rtc_base:rtc_base_approved", 212 "../rtc_base:rtc_base_approved",
212 "../system_wrappers", 213 "../system_wrappers",
213 "//testing/gmock", 214 "//testing/gmock",
214 "//testing/gtest", 215 "//testing/gtest",
215 "//third_party/gflags", 216 "//third_party/gflags",
216 ] 217 ]
217 218
219 if (!is_ios) {
220 deps += [ "//third_party:jpeg" ]
221 sources += [ "testsupport/jpeg_frame_writer.cc" ]
222 }
223
218 public_deps = [ 224 public_deps = [
219 ":fileutils", 225 ":fileutils",
220 ] 226 ]
221 227
222 if (!build_with_chromium && is_clang) { 228 if (!build_with_chromium && is_clang) {
223 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 229 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
224 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 230 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
225 } 231 }
226 232
227 if (is_android) { 233 if (is_android) {
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 java_files = [ 613 java_files = [
608 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 614 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 615 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
610 ] 616 ]
611 deps = [ 617 deps = [
612 "../rtc_base:base_java", 618 "../rtc_base:base_java",
613 "//testing/android/native_test:native_test_java", 619 "//testing/android/native_test:native_test_java",
614 ] 620 ]
615 } 621 }
616 } 622 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698