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

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

Issue 3004603002: Update jpeg writer to compile on iOS and document it better (Closed)
Patch Set: Rename jpeg_frame_writer_dummy.cc to jpeg_frame_writer_ios.cc Created 3 years, 3 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/testsupport/frame_writer.h » ('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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "../rtc_base:rtc_base_approved", 219 "../rtc_base:rtc_base_approved",
220 "../system_wrappers", 220 "../system_wrappers",
221 "//testing/gmock", 221 "//testing/gmock",
222 "//testing/gtest", 222 "//testing/gtest",
223 "//third_party/gflags", 223 "//third_party/gflags",
224 ] 224 ]
225 225
226 if (!is_ios) { 226 if (!is_ios) {
227 deps += [ "//third_party:jpeg" ] 227 deps += [ "//third_party:jpeg" ]
228 sources += [ "testsupport/jpeg_frame_writer.cc" ] 228 sources += [ "testsupport/jpeg_frame_writer.cc" ]
229 } else {
230 sources += [ "testsupport/jpeg_frame_writer_ios.cc" ]
229 } 231 }
230 232
231 public_deps = [ 233 public_deps = [
232 ":fileutils", 234 ":fileutils",
233 ] 235 ]
234 236
235 if (!build_with_chromium && is_clang) { 237 if (!build_with_chromium && is_clang) {
236 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 238 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
237 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 239 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
238 } 240 }
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 ] 717 ]
716 deps = [ 718 deps = [
717 "../rtc_base:base_java", 719 "../rtc_base:base_java",
718 "//testing/android/native_test:native_test_java", 720 "//testing/android/native_test:native_test_java",
719 ] 721 ]
720 722
721 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 723 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148
722 no_build_hooks = true 724 no_build_hooks = true
723 } 725 }
724 } 726 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/testsupport/frame_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698