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

Side by Side Diff: sql/sql.gyp

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed datadeps to data_deps to reflect recent change. Created 5 years, 6 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 | « sql/BUILD.gn ('k') | sync/BUILD.gn » ('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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 ['OS == "android"', { 125 ['OS == "android"', {
126 'targets': [ 126 'targets': [
127 { 127 {
128 'target_name': 'sql_unittests_apk', 128 'target_name': 'sql_unittests_apk',
129 'type': 'none', 129 'type': 'none',
130 'dependencies': [ 130 'dependencies': [
131 'sql_unittests', 131 'sql_unittests',
132 ], 132 ],
133 'variables': { 133 'variables': {
134 'test_suite_name': 'sql_unittests', 134 'test_suite_name': 'sql_unittests',
135 'isolate_file': 'sql_unittests.isolate',
135 }, 136 },
136 'includes': [ '../build/apk_test.gypi' ], 137 'includes': [ '../build/apk_test.gypi' ],
137 }, 138 },
138 ], 139 ],
139 }], 140 }],
140 ['test_isolation_mode != "noop"', { 141 ['test_isolation_mode != "noop"', {
141 'targets': [ 142 'targets': [
142 { 143 {
143 'target_name': 'sql_unittests_run', 144 'target_name': 'sql_unittests_run',
144 'type': 'none', 145 'type': 'none',
145 'dependencies': [ 146 'dependencies': [
146 'sql_unittests', 147 'sql_unittests',
147 ], 148 ],
148 'includes': [ 149 'includes': [
149 '../build/isolate.gypi', 150 '../build/isolate.gypi',
150 ], 151 ],
151 'sources': [ 152 'sources': [
152 'sql_unittests.isolate', 153 'sql_unittests.isolate',
153 ], 154 ],
154 }, 155 },
155 ], 156 ],
156 }], 157 }],
157 ], 158 ],
158 } 159 }
OLDNEW
« no previous file with comments | « sql/BUILD.gn ('k') | sync/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698