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

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

Issue 3005253002: Add full stack tests for MediaCodec. (Closed)
Patch Set: 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
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 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "../test:test_renderer", 117 "../test:test_renderer",
118 "../test:test_renderer", 118 "../test:test_renderer",
119 "../test:test_support", 119 "../test:test_support",
120 "../test:test_support_test_output", 120 "../test:test_support_test_output",
121 "../test:video_test_common", 121 "../test:video_test_common",
122 "../test:video_test_common", 122 "../test:video_test_common",
123 "../test:video_test_support", 123 "../test:video_test_support",
124 "../voice_engine", 124 "../voice_engine",
125 "//testing/gtest", 125 "//testing/gtest",
126 ] 126 ]
127 if (is_android) {
128 deps += [
129 "../modules/video_coding:video_coding_codecs_test_android_test_initializ er",
130 "../sdk/android:video_jni",
131 ]
132 }
133 if (is_ios || is_mac) {
134 deps += [ "../modules/video_coding:codec_test_objc" ]
135 }
127 if (!build_with_chromium && is_clang) { 136 if (!build_with_chromium && is_clang) {
128 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 137 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
129 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 138 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
130 } 139 }
131 } 140 }
132 141
133 rtc_source_set("video_full_stack_tests") { 142 rtc_source_set("video_full_stack_tests") {
134 testonly = true 143 testonly = true
135 144
136 # Skip restricting visibility on mobile platforms since the tests on those 145 # Skip restricting visibility on mobile platforms since the tests on those
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 ] 320 ]
312 if (!build_with_chromium && is_clang) { 321 if (!build_with_chromium && is_clang) {
313 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 322 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
314 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 323 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
315 } 324 }
316 if (rtc_use_h264) { 325 if (rtc_use_h264) {
317 defines += [ "WEBRTC_USE_H264" ] 326 defines += [ "WEBRTC_USE_H264" ]
318 } 327 }
319 } 328 }
320 } 329 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698