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

Unified Diff: webrtc/test/test.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 side-by-side diff with in-line comments
Download patch
Index: webrtc/test/test.gyp
diff --git a/webrtc/test/test.gyp b/webrtc/test/test.gyp
index ee3283ea6ad36949873d28b52c9a6f2fdab5ffe5..01003eb9fb8c27482cefd10134ca95b889f446cc 100644
--- a/webrtc/test/test.gyp
+++ b/webrtc/test/test.gyp
@@ -401,7 +401,7 @@
},
],
'conditions': [
- ['include_tests==1 and OS=="android"', {
+ ['OS=="android"', {
'targets': [
{
'target_name': 'test_support_unittests_apk_target',
@@ -411,7 +411,28 @@
],
},
],
- }],
+ 'conditions': [
+ ['test_isolation_mode != "noop"',
+ {
+ 'targets': [
+ {
+ 'target_name': 'test_support_unittests_apk_run',
+ 'type': 'none',
+ 'dependencies': [
+ '<(apk_tests_path):test_support_unittests_apk',
+ ],
+ 'includes': [
+ '../build/isolate.gypi',
+ ],
+ 'sources': [
+ 'test_support_unittests_apk.isolate',
+ ],
+ },
+ ],
+ },
+ ],
+ ],
+ }], # OS=="android"
['test_isolation_mode != "noop"', {
'targets': [
{

Powered by Google App Engine
This is Rietveld 408576698