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

Side by Side Diff: sql/sql.gyp

Issue 1377793004: Isolate sql_unittests_apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actual isolate file this time. Created 5 years, 2 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 | « no previous file | sql/sql_unittests_apk.isolate » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'dependencies': [ 132 'dependencies': [
133 'sql_unittests', 133 'sql_unittests',
134 ], 134 ],
135 'variables': { 135 'variables': {
136 'test_suite_name': 'sql_unittests', 136 'test_suite_name': 'sql_unittests',
137 'isolate_file': 'sql_unittests.isolate', 137 'isolate_file': 'sql_unittests.isolate',
138 }, 138 },
139 'includes': [ '../build/apk_test.gypi' ], 139 'includes': [ '../build/apk_test.gypi' ],
140 }, 140 },
141 ], 141 ],
142 'conditions': [
143 ['test_isolation_mode != "noop"', {
144 'targets': [
145 {
146 'target_name': 'sql_unittests_apk_run',
147 'type': 'none',
148 'dependencies': [
149 'sql_unittests_apk',
150 ],
151 'includes': [
152 '../build/isolate.gypi',
153 ],
154 'sources': [
155 'sql_unittests_apk.isolate',
156 ],
157 },
158 ]
159 }],
160 ]
142 }], 161 }],
143 ['test_isolation_mode != "noop"', { 162 ['test_isolation_mode != "noop"', {
144 'targets': [ 163 'targets': [
145 { 164 {
146 'target_name': 'sql_unittests_run', 165 'target_name': 'sql_unittests_run',
147 'type': 'none', 166 'type': 'none',
148 'dependencies': [ 167 'dependencies': [
149 'sql_unittests', 168 'sql_unittests',
150 ], 169 ],
151 'includes': [ 170 'includes': [
152 '../build/isolate.gypi', 171 '../build/isolate.gypi',
153 ], 172 ],
154 'sources': [ 173 'sources': [
155 'sql_unittests.isolate', 174 'sql_unittests.isolate',
156 ], 175 ],
157 }, 176 },
158 ], 177 ],
159 }], 178 }],
160 ], 179 ],
161 } 180 }
OLDNEW
« no previous file with comments | « no previous file | sql/sql_unittests_apk.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698