Chromium Code Reviews| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 }, | 72 }, |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 'target_name': 'sql_unittests', | 75 'target_name': 'sql_unittests', |
| 76 'type': '<(gtest_target_type)', | 76 'type': '<(gtest_target_type)', |
| 77 'dependencies': [ | 77 'dependencies': [ |
| 78 'sql', | 78 'sql', |
| 79 'test_support_sql', | 79 'test_support_sql', |
| 80 '../base/base.gyp:test_support_base', | 80 '../base/base.gyp:test_support_base', |
| 81 '../testing/gtest.gyp:gtest', | 81 '../testing/gtest.gyp:gtest', |
| 82 '../third_party/sqlite/sqlite.gyp:sqlite', | |
|
Scott Hess - ex-Googler
2013/07/26 04:51:43
So that the test code can see USE_SYSTEM_SQLITE.
| |
| 82 ], | 83 ], |
| 83 'sources': [ | 84 'sources': [ |
| 84 'run_all_unittests.cc', | 85 'run_all_unittests.cc', |
| 85 'connection_unittest.cc', | 86 'connection_unittest.cc', |
| 86 'recovery_unittest.cc', | 87 'recovery_unittest.cc', |
| 87 'sqlite_features_unittest.cc', | 88 'sqlite_features_unittest.cc', |
| 88 'statement_unittest.cc', | 89 'statement_unittest.cc', |
| 89 'transaction_unittest.cc', | 90 'transaction_unittest.cc', |
| 90 ], | 91 ], |
| 91 'include_dirs': [ | 92 'include_dirs': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 125 'variables': { | 126 'variables': { |
| 126 'test_suite_name': 'sql_unittests', | 127 'test_suite_name': 'sql_unittests', |
| 127 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', | 128 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', |
| 128 }, | 129 }, |
| 129 'includes': [ '../build/apk_test.gypi' ], | 130 'includes': [ '../build/apk_test.gypi' ], |
| 130 }, | 131 }, |
| 131 ], | 132 ], |
| 132 }], | 133 }], |
| 133 ], | 134 ], |
| 134 } | 135 } |
| OLD | NEW |