| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 'sql', | 79 'sql', |
| 80 'test_support_sql', | 80 'test_support_sql', |
| 81 '../base/base.gyp:test_support_base', | 81 '../base/base.gyp:test_support_base', |
| 82 '../testing/gtest.gyp:gtest', | 82 '../testing/gtest.gyp:gtest', |
| 83 '../third_party/sqlite/sqlite.gyp:sqlite', | 83 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 84 ], | 84 ], |
| 85 'sources': [ | 85 'sources': [ |
| 86 'run_all_unittests.cc', | 86 'run_all_unittests.cc', |
| 87 'connection_unittest.cc', | 87 'connection_unittest.cc', |
| 88 'meta_table_unittest.cc', |
| 88 'recovery_unittest.cc', | 89 'recovery_unittest.cc', |
| 89 'sqlite_features_unittest.cc', | 90 'sqlite_features_unittest.cc', |
| 90 'statement_unittest.cc', | 91 'statement_unittest.cc', |
| 91 'transaction_unittest.cc', | 92 'transaction_unittest.cc', |
| 92 ], | 93 ], |
| 93 'include_dirs': [ | 94 'include_dirs': [ |
| 94 '..', | 95 '..', |
| 95 ], | 96 ], |
| 96 'conditions': [ | 97 'conditions': [ |
| 97 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 98 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 127 'variables': { | 128 'variables': { |
| 128 'test_suite_name': 'sql_unittests', | 129 'test_suite_name': 'sql_unittests', |
| 129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', | 130 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', |
| 130 }, | 131 }, |
| 131 'includes': [ '../build/apk_test.gypi' ], | 132 'includes': [ '../build/apk_test.gypi' ], |
| 132 }, | 133 }, |
| 133 ], | 134 ], |
| 134 }], | 135 }], |
| 135 ], | 136 ], |
| 136 } | 137 } |
| OLD | NEW |