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