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

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

Issue 1882963003: Add isolate files for Android tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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) 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 ['OS=="android"', { 47 ['OS=="android"', {
48 'targets': [ 48 'targets': [
49 { 49 {
50 'target_name': 'common_video_unittests_apk_target', 50 'target_name': 'common_video_unittests_apk_target',
51 'type': 'none', 51 'type': 'none',
52 'dependencies': [ 52 'dependencies': [
53 '<(apk_tests_path):common_video_unittests_apk', 53 '<(apk_tests_path):common_video_unittests_apk',
54 ], 54 ],
55 }, 55 },
56 ], 56 ],
57 }], 57 'conditions': [
58 ['test_isolation_mode != "noop"',
59 {
60 'targets': [
61 {
62 'target_name': 'common_video_unittests_apk_run',
63 'type': 'none',
64 'dependencies': [
65 '<(apk_tests_path):common_video_unittests_apk',
66 ],
67 'includes': [
68 '../build/isolate.gypi',
69 ],
70 'sources': [
71 'common_video_unittests_apk.isolate',
72 ],
73 },
74 ],
75 },
76 ],
77 ],
78 }], # OS=="android"
58 ['test_isolation_mode != "noop"', { 79 ['test_isolation_mode != "noop"', {
59 'targets': [ 80 'targets': [
60 { 81 {
61 'target_name': 'common_video_unittests_run', 82 'target_name': 'common_video_unittests_run',
62 'type': 'none', 83 'type': 'none',
63 'dependencies': [ 84 'dependencies': [
64 'common_video_unittests', 85 'common_video_unittests',
65 ], 86 ],
66 'includes': [ 87 'includes': [
67 '../build/isolate.gypi', 88 '../build/isolate.gypi',
68 ], 89 ],
69 'sources': [ 90 'sources': [
70 'common_video_unittests.isolate', 91 'common_video_unittests.isolate',
71 ], 92 ],
72 }, 93 },
73 ], 94 ],
74 }], 95 }],
75 ], 96 ],
76 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698