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

Side by Side Diff: webrtc/common_video/common_video_unittests.gyp

Issue 1694353003: iOS: Add resource files for tests and implement OutputPath (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix ifdef for Android build Created 4 years, 10 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/ios/tests/common_tests.json ('k') | webrtc/common_video/libyuv/libyuv_unittest.cc » ('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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 { 9 {
10 'includes': ['../build/common.gypi'], 10 'includes': ['../build/common.gypi'],
(...skipping 17 matching lines...) Expand all
28 # Disable warnings to enable Win64 build, issue 1323. 28 # Disable warnings to enable Win64 build, issue 1323.
29 'msvs_disabled_warnings': [ 29 'msvs_disabled_warnings': [
30 4267, # size_t to int truncation. 30 4267, # size_t to int truncation.
31 ], 31 ],
32 'conditions': [ 32 'conditions': [
33 ['OS=="android"', { 33 ['OS=="android"', {
34 'dependencies': [ 34 'dependencies': [
35 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 35 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
36 ], 36 ],
37 }], 37 }],
38 ['OS=="ios"', {
39 'mac_bundle_resources': [
40 '<(DEPTH)/resources/foreman_cif.yuv',
41 ],
42 }],
38 ], 43 ],
39 }, 44 },
40 ], # targets 45 ], # targets
41 'conditions': [ 46 'conditions': [
42 ['OS=="android"', { 47 ['OS=="android"', {
43 'targets': [ 48 'targets': [
44 { 49 {
45 'target_name': 'common_video_unittests_apk_target', 50 'target_name': 'common_video_unittests_apk_target',
46 'type': 'none', 51 'type': 'none',
47 'dependencies': [ 52 'dependencies': [
(...skipping 14 matching lines...) Expand all
62 '../build/isolate.gypi', 67 '../build/isolate.gypi',
63 ], 68 ],
64 'sources': [ 69 'sources': [
65 'common_video_unittests.isolate', 70 'common_video_unittests.isolate',
66 ], 71 ],
67 }, 72 },
68 ], 73 ],
69 }], 74 }],
70 ], 75 ],
71 } 76 }
OLDNEW
« no previous file with comments | « webrtc/build/ios/tests/common_tests.json ('k') | webrtc/common_video/libyuv/libyuv_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698