OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'type': 'none', | 60 'type': 'none', |
61 'dependencies': [ | 61 'dependencies': [ |
62 'gl_unittests', | 62 'gl_unittests', |
63 ], | 63 ], |
64 'variables': { | 64 'variables': { |
65 'test_suite_name': 'gl_unittests', | 65 'test_suite_name': 'gl_unittests', |
66 }, | 66 }, |
67 'includes': [ '../../build/apk_test.gypi' ], | 67 'includes': [ '../../build/apk_test.gypi' ], |
68 }, | 68 }, |
69 ], | 69 ], |
| 70 'conditions': [ |
| 71 ['test_isolation_mode != "noop"', |
| 72 { |
| 73 'targets': [ |
| 74 { |
| 75 'target_name': 'gl_unittests_apk_run', |
| 76 'type': 'none', |
| 77 'dependencies': [ |
| 78 'gl_unittests_apk', |
| 79 ], |
| 80 'includes': [ |
| 81 '../../build/isolate.gypi', |
| 82 ], |
| 83 'sources': [ |
| 84 'gl_unittests_apk.isolate', |
| 85 ], |
| 86 }, |
| 87 ] |
| 88 } |
| 89 ], |
| 90 ], |
70 }], | 91 }], |
71 ['test_isolation_mode != "noop"', { | 92 ['test_isolation_mode != "noop" and OS != "android"', { |
72 'targets': [ | 93 'targets': [ |
73 { | 94 { |
74 'target_name': 'gl_unittests_run', | 95 'target_name': 'gl_unittests_run', |
75 'type': 'none', | 96 'type': 'none', |
76 'dependencies': [ | 97 'dependencies': [ |
77 'gl_unittests', | 98 'gl_unittests', |
78 ], | 99 ], |
79 'includes': [ | 100 'includes': [ |
80 '../../build/isolate.gypi', | 101 '../../build/isolate.gypi', |
81 ], | 102 ], |
82 'sources': [ | 103 'sources': [ |
83 'gl_unittests.isolate', | 104 'gl_unittests.isolate', |
84 ], | 105 ], |
85 'conditions': [ | 106 'conditions': [ |
86 ['use_x11 == 1', { | 107 ['use_x11 == 1', { |
87 'dependencies': [ | 108 'dependencies': [ |
88 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 109 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
89 ], | 110 ], |
90 }], | 111 }], |
91 ], | 112 ], |
92 }, | 113 }, |
93 ], | 114 ], |
94 }], | 115 }], |
95 ], | 116 ], |
96 } | 117 } |
OLD | NEW |