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

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

Issue 2277753003: GN: Synchronize resources between Android and iOS. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed outdated comments Created 4 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/modules/audio_coding/BUILD.gn ('k') | webrtc/tools/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/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 } 307 }
308 308
309 if (is_clang) { 309 if (is_clang) {
310 # Suppress warnings from the Chromium Clang plugin. 310 # Suppress warnings from the Chromium Clang plugin.
311 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 311 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
312 configs -= [ "//build/config/clang:find_bad_constructs" ] 312 configs -= [ "//build/config/clang:find_bad_constructs" ]
313 } 313 }
314 314
315 if (is_android) { 315 if (is_android) {
316 deps += [ "//testing/android/native_test:native_test_support" ] 316 deps += [ "//testing/android/native_test:native_test_support" ]
317 shard_timeout = 900
318 }
317 319
318 # This needs to be kept in sync with the test_support_unittests.isolate file . 320 if (is_android || is_ios) {
319 # TODO(kjellander); Move this to android_assets targets instead.
320 data = [ 321 data = [
321 "//resources/foreman_cif_short.yuv", 322 "//resources/foreman_cif_short.yuv",
322 "//resources/video_coding/frame-ethernet-ii.pcap", 323 "//resources/video_coding/frame-ethernet-ii.pcap",
323 "//resources/video_coding/frame-loopback.pcap", 324 "//resources/video_coding/frame-loopback.pcap",
324 "//resources/video_coding/pltype103.rtp", 325 "//resources/video_coding/pltype103.rtp",
325 "//resources/video_coding/pltype103_header_only.rtp", 326 "//resources/video_coding/pltype103_header_only.rtp",
326 "//resources/video_coding/ssrcs-2.pcap", 327 "//resources/video_coding/ssrcs-2.pcap",
327 "//resources/video_coding/ssrcs-3.pcap", 328 "//resources/video_coding/ssrcs-3.pcap",
328 ] 329 ]
330 }
329 331
330 shard_timeout = 900
331 }
332 deps += [ 332 deps += [
333 ":channel_transport", 333 ":channel_transport",
334 ":test_common", 334 ":test_common",
335 ":test_support_main", 335 ":test_support_main",
336 "../modules/video_capture", 336 "../modules/video_capture",
337 "//testing/gmock", 337 "//testing/gmock",
338 "//testing/gtest", 338 "//testing/gtest",
339 ] 339 ]
340 } 340 }
341 341
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 configs -= [ "//build/config/clang:find_bad_constructs" ] 482 configs -= [ "//build/config/clang:find_bad_constructs" ]
483 } 483 }
484 484
485 deps = [ 485 deps = [
486 ":test_support", 486 ":test_support",
487 ":video_test_common", 487 ":video_test_common",
488 "../modules/media_file", 488 "../modules/media_file",
489 "//testing/gtest", 489 "//testing/gtest",
490 ] 490 ]
491 } 491 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698