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

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

Issue 2438973002: GN: move webrtc/video/ targets from webrtc/BUILD.gn into webrtc/video/BUILD.gn (Closed)
Patch Set: Add missing dependency on modules/video_capture:video_capture_module Created 4 years, 2 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/video/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) 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 sources = [ 186 sources = [
187 "testsupport/mac/run_threaded_main_mac.h", 187 "testsupport/mac/run_threaded_main_mac.h",
188 "testsupport/mac/run_threaded_main_mac.mm", 188 "testsupport/mac/run_threaded_main_mac.mm",
189 ] 189 ]
190 190
191 deps = [ 191 deps = [
192 ":test_support", 192 ":test_support",
193 ] 193 ]
194 } 194 }
195 195
196 rtc_source_set("run_test") {
197 testonly = true
198 sources = [
199 "run_test.h",
200 ]
201 if (is_mac) {
202 sources += [ "mac/run_test.mm" ]
203 } else {
204 sources += [ "run_test.cc" ]
205 }
206 }
207
196 test_support_unittests_resources = [ 208 test_support_unittests_resources = [
197 "//resources/foreman_cif_short.yuv", 209 "//resources/foreman_cif_short.yuv",
198 "//resources/video_coding/frame-ethernet-ii.pcap", 210 "//resources/video_coding/frame-ethernet-ii.pcap",
199 "//resources/video_coding/frame-loopback.pcap", 211 "//resources/video_coding/frame-loopback.pcap",
200 "//resources/video_coding/pltype103.rtp", 212 "//resources/video_coding/pltype103.rtp",
201 "//resources/video_coding/pltype103_header_only.rtp", 213 "//resources/video_coding/pltype103_header_only.rtp",
202 "//resources/video_coding/ssrcs-2.pcap", 214 "//resources/video_coding/ssrcs-2.pcap",
203 "//resources/video_coding/ssrcs-3.pcap", 215 "//resources/video_coding/ssrcs-3.pcap",
204 ] 216 ]
205 217
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 } 327 }
316 328
317 deps = [ 329 deps = [
318 ":rtp_test_utils", 330 ":rtp_test_utils",
319 ":test_support", 331 ":test_support",
320 "..:webrtc_common", 332 "..:webrtc_common",
321 "../audio", 333 "../audio",
322 "../base:rtc_base_approved", 334 "../base:rtc_base_approved",
323 "../call", 335 "../call",
324 "../modules/media_file", 336 "../modules/media_file",
337 "../modules/video_capture:video_capture_module",
kjellander_webrtc 2016/10/24 06:49:54 vcm_capturer.cc needs this. Before consumers of th
325 "../video", 338 "../video",
326 "//testing/gmock", 339 "//testing/gmock",
327 "//testing/gtest", 340 "//testing/gtest",
328 ] 341 ]
329 } 342 }
330 343
331 config("test_renderer_exported_config") { 344 config("test_renderer_exported_config") {
332 if (is_win && is_clang) { 345 if (is_win && is_clang) {
333 # GN orders flags on a target before flags from configs. The default config 346 # GN orders flags on a target before flags from configs. The default config
334 # adds -Wall, and this flag have to be after -Wall -- so they need to 347 # adds -Wall, and this flag have to be after -Wall -- so they need to
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 406 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
394 } 407 }
395 408
396 deps = [ 409 deps = [
397 ":test_support", 410 ":test_support",
398 ":video_test_common", 411 ":video_test_common",
399 "../modules/media_file", 412 "../modules/media_file",
400 "//testing/gtest", 413 "//testing/gtest",
401 ] 414 ]
402 } 415 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698