OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
125 'variables': { | 125 'variables': { |
126 'test_suite_name': 'ui_touch_selection_unittests', | 126 'test_suite_name': 'ui_touch_selection_unittests', |
127 }, | 127 }, |
128 'includes': [ '../../build/apk_test.gypi' ], | 128 'includes': [ '../../build/apk_test.gypi' ], |
129 }, | 129 }, |
130 ], | 130 ], |
131 }], # OS == "android" | 131 }], # OS == "android" |
132 ['test_isolation_mode != "noop"', { | 132 ['test_isolation_mode != "noop"', { |
133 'targets': [ | 133 'targets': [ |
134 { | 134 { |
135 'target_name': 'ui_touch_selection_unittests_run', | 135 'target_name': 'ui_touch_selection_unittests_run', |
jbudorick
2015/09/29 18:14:38
Do we want this to build on android?
ghost stip (do not use)
2015/09/29 21:50:09
Are you saying I should disable this on android? I
jbudorick
2015/09/30 08:49:41
Yes.
ghost stip (do not use)
2015/10/13 06:39:20
Done.
| |
136 'type': 'none', | 136 'type': 'none', |
137 'dependencies': [ | 137 'dependencies': [ |
138 'ui_touch_selection_unittests', | 138 'ui_touch_selection_unittests', |
139 ], | 139 ], |
140 'includes': [ | 140 'includes': [ |
141 '../../build/isolate.gypi', | 141 '../../build/isolate.gypi', |
142 ], | 142 ], |
143 'sources': [ | 143 'sources': [ |
144 'ui_touch_selection_unittests.isolate', | 144 'ui_touch_selection_unittests.isolate', |
145 ], | 145 ], |
146 'conditions': [ | 146 'conditions': [ |
147 ['use_x11 == 1', { | 147 ['use_x11 == 1', { |
148 'dependencies': [ | 148 'dependencies': [ |
149 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 149 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
150 ], | 150 ], |
151 }], | 151 }], |
152 ], | 152 ], |
153 }, | 153 }, |
154 ], | 154 ], |
155 'conditions': [ | |
156 ['OS == "android"', { | |
157 'targets': [ | |
158 { | |
159 'target_name': 'ui_touch_selection_unittests_apk_run', | |
jdduke (slow)
2015/09/29 18:25:48
Are we doing this for each test apk separately? I
ghost stip (do not use)
2015/09/29 21:50:09
yeah, mainly for OWNERS reasons (and I hate review
| |
160 'type': 'none', | |
161 'dependencies': [ | |
162 'ui_touch_selection_unittests_apk', | |
163 ], | |
164 'includes': [ | |
165 '../../build/isolate.gypi', | |
166 ], | |
167 'sources': [ | |
168 'ui_touch_selection_unittests_apk.isolate', | |
169 ], | |
170 }, | |
171 ] | |
172 }], | |
173 ], | |
155 }], | 174 }], |
156 ], | 175 ], |
157 } | 176 } |
OLD | NEW |