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

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

Issue 2998123002: Revert of Add Jpeg frame writer for test support.
Patch Set: 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",
211 "../common_video", 210 "../common_video",
212 "../rtc_base:rtc_base_approved", 211 "../rtc_base:rtc_base_approved",
213 "../system_wrappers", 212 "../system_wrappers",
214 "//testing/gmock", 213 "//testing/gmock",
215 "//testing/gtest", 214 "//testing/gtest",
216 "//third_party/gflags", 215 "//third_party/gflags",
217 ] 216 ]
218 217
219 if (!is_ios) {
220 deps += [ "//third_party:jpeg" ]
221 sources += [ "testsupport/jpeg_frame_writer.cc" ]
222 }
223
224 public_deps = [ 218 public_deps = [
225 ":fileutils", 219 ":fileutils",
226 ] 220 ]
227 221
228 if (!build_with_chromium && is_clang) { 222 if (!build_with_chromium && is_clang) {
229 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 223 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
230 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 224 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
231 } 225 }
232 226
233 if (is_android) { 227 if (is_android) {
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 java_files = [ 607 java_files = [
614 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 608 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
615 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
616 ] 610 ]
617 deps = [ 611 deps = [
618 "../rtc_base:base_java", 612 "../rtc_base:base_java",
619 "//testing/android/native_test:native_test_java", 613 "//testing/android/native_test:native_test_java",
620 ] 614 ]
621 } 615 }
622 } 616 }
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