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

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

Issue 3011043002: Add VideoProcessorIntegrationTest for MediaCodec implementations. (Closed)
Patch Set: asapersson comments 1. 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 | « webrtc/BUILD.gn ('k') | webrtc/modules/video_coding/BUILD.gn » ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "desktop_capture:desktop_capture_modules_tests", 70 "desktop_capture:desktop_capture_modules_tests",
71 "rtp_rtcp:rtp_rtcp_modules_tests", 71 "rtp_rtcp:rtp_rtcp_modules_tests",
72 "video_coding:video_coding_modules_tests", 72 "video_coding:video_coding_modules_tests",
73 "//testing/gmock", 73 "//testing/gmock",
74 "//testing/gtest", 74 "//testing/gtest",
75 ] 75 ]
76 76
77 data = modules_tests_resources 77 data = modules_tests_resources
78 78
79 if (is_android) { 79 if (is_android) {
80 deps += [ "//testing/android/native_test:native_test_native_code" ] 80 deps += [
81 # NOTE(brandtr): Including Java classes seems only to be possible from
82 # rtc_test targets. Therefore we include this target here, instead of
83 # in video_coding_modules_tests, where it is actually used.
84 "../sdk/android:libjingle_peerconnection_java",
85 "//testing/android/native_test:native_test_native_code",
86 ]
81 shard_timeout = 900 87 shard_timeout = 900
82 } 88 }
83 89
84 if (is_ios) { 90 if (is_ios) {
85 deps += [ ":modules_tests_bundle_data" ] 91 deps += [ ":modules_tests_bundle_data" ]
86 } 92 }
87 93
88 if (!build_with_chromium && is_clang) { 94 if (!build_with_chromium && is_clang) {
89 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 95 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
90 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 96 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 shard_timeout = 900 258 shard_timeout = 900
253 } 259 }
254 if (is_ios) { 260 if (is_ios) {
255 info_plist = "../test/ios/Info.plist" 261 info_plist = "../test/ios/Info.plist"
256 deps += [ ":modules_unittests_bundle_data" ] 262 deps += [ ":modules_unittests_bundle_data" ]
257 configs += [ "..:common_objc" ] 263 configs += [ "..:common_objc" ]
258 ldflags = [ "-ObjC" ] 264 ldflags = [ "-ObjC" ]
259 } 265 }
260 } 266 }
261 } 267 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/modules/video_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698