| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'test/sql_test_base.cc', | 102 'test/sql_test_base.cc', |
| 103 'test/sql_test_base.h', | 103 'test/sql_test_base.h', |
| 104 'test/sql_test_suite.cc', | 104 'test/sql_test_suite.cc', |
| 105 'test/sql_test_suite.h', | 105 'test/sql_test_suite.h', |
| 106 'transaction_unittest.cc', | 106 'transaction_unittest.cc', |
| 107 ], | 107 ], |
| 108 'include_dirs': [ | 108 'include_dirs': [ |
| 109 '..', | 109 '..', |
| 110 ], | 110 ], |
| 111 'conditions': [ | 111 'conditions': [ |
| 112 ['os_posix==1 and OS!="mac" and OS!="ios"', { | |
| 113 'conditions': [ | |
| 114 ['use_allocator!="none"', { | |
| 115 'dependencies': [ | |
| 116 '../base/allocator/allocator.gyp:allocator', | |
| 117 ], | |
| 118 }], | |
| 119 ], | |
| 120 }], | |
| 121 ['OS == "android"', { | 112 ['OS == "android"', { |
| 122 'dependencies': [ | 113 'dependencies': [ |
| 123 '../testing/android/native_test.gyp:native_test_native_code', | 114 '../testing/android/native_test.gyp:native_test_native_code', |
| 124 ], | 115 ], |
| 125 }], | 116 }], |
| 126 ], | 117 ], |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 'msvs_disabled_warnings': [4267, ], | 119 'msvs_disabled_warnings': [4267, ], |
| 129 }, | 120 }, |
| 130 ], | 121 ], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 '../build/isolate.gypi', | 167 '../build/isolate.gypi', |
| 177 ], | 168 ], |
| 178 'sources': [ | 169 'sources': [ |
| 179 'sql_unittests.isolate', | 170 'sql_unittests.isolate', |
| 180 ], | 171 ], |
| 181 }, | 172 }, |
| 182 ], | 173 ], |
| 183 }], | 174 }], |
| 184 ], | 175 ], |
| 185 } | 176 } |
| OLD | NEW |