| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |