| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |