| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 '../base/allocator/allocator.gyp:allocator', | 108 '../base/allocator/allocator.gyp:allocator', |
| 109 ], | 109 ], |
| 110 }], | 110 }], |
| 111 ], | 111 ], |
| 112 }], | 112 }], |
| 113 ['OS == "android"', { | 113 ['OS == "android"', { |
| 114 'dependencies': [ | 114 'dependencies': [ |
| 115 '../testing/android/native_test.gyp:native_test_native_code', | 115 '../testing/android/native_test.gyp:native_test_native_code', |
| 116 ], | 116 ], |
| 117 }], | 117 }], |
| 118 ['sqlite_enable_fts2', { |
| 119 'defines': [ |
| 120 'SQLITE_ENABLE_FTS2', |
| 121 ], |
| 122 }], |
| 118 ], | 123 ], |
| 119 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 120 'msvs_disabled_warnings': [4267, ], | 125 'msvs_disabled_warnings': [4267, ], |
| 121 }, | 126 }, |
| 122 ], | 127 ], |
| 123 'conditions': [ | 128 'conditions': [ |
| 124 ['OS == "android"', { | 129 ['OS == "android"', { |
| 125 'targets': [ | 130 'targets': [ |
| 126 { | 131 { |
| 127 'target_name': 'sql_unittests_apk', | 132 'target_name': 'sql_unittests_apk', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 148 '../build/isolate.gypi', | 153 '../build/isolate.gypi', |
| 149 ], | 154 ], |
| 150 'sources': [ | 155 'sources': [ |
| 151 'sql_unittests.isolate', | 156 'sql_unittests.isolate', |
| 152 ], | 157 ], |
| 153 }, | 158 }, |
| 154 ], | 159 ], |
| 155 }], | 160 }], |
| 156 ], | 161 ], |
| 157 } | 162 } |
| OLD | NEW |