| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ], | 89 ], |
| 90 'sources': [ | 90 'sources': [ |
| 91 'connection_unittest.cc', | 91 'connection_unittest.cc', |
| 92 'meta_table_unittest.cc', | 92 'meta_table_unittest.cc', |
| 93 'recovery_unittest.cc', | 93 'recovery_unittest.cc', |
| 94 'sqlite_features_unittest.cc', | 94 'sqlite_features_unittest.cc', |
| 95 'statement_unittest.cc', | 95 'statement_unittest.cc', |
| 96 'test/paths.cc', | 96 'test/paths.cc', |
| 97 'test/paths.h', | 97 'test/paths.h', |
| 98 'test/run_all_unittests.cc', | 98 'test/run_all_unittests.cc', |
| 99 'test/sql_test_base.cc', |
| 100 'test/sql_test_base.h', |
| 99 'test/sql_test_suite.cc', | 101 'test/sql_test_suite.cc', |
| 100 'test/sql_test_suite.h', | 102 'test/sql_test_suite.h', |
| 101 'transaction_unittest.cc', | 103 'transaction_unittest.cc', |
| 102 ], | 104 ], |
| 103 'include_dirs': [ | 105 'include_dirs': [ |
| 104 '..', | 106 '..', |
| 105 ], | 107 ], |
| 106 'conditions': [ | 108 'conditions': [ |
| 107 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 109 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
| 108 'conditions': [ | 110 'conditions': [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 '../build/isolate.gypi', | 154 '../build/isolate.gypi', |
| 153 ], | 155 ], |
| 154 'sources': [ | 156 'sources': [ |
| 155 'sql_unittests.isolate', | 157 'sql_unittests.isolate', |
| 156 ], | 158 ], |
| 157 }, | 159 }, |
| 158 ], | 160 ], |
| 159 }], | 161 }], |
| 160 ], | 162 ], |
| 161 } | 163 } |
| OLD | NEW |