| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 'sql', | 49 'sql', |
| 50 '../base/base.gyp:base', | 50 '../base/base.gyp:base', |
| 51 '../testing/gtest.gyp:gtest', | 51 '../testing/gtest.gyp:gtest', |
| 52 ], | 52 ], |
| 53 'export_dependent_settings': [ | 53 'export_dependent_settings': [ |
| 54 'sql', | 54 'sql', |
| 55 '../base/base.gyp:base', | 55 '../base/base.gyp:base', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 'test/error_callback_support.cc', |
| 59 'test/error_callback_support.h', |
| 58 'test/scoped_error_ignorer.cc', | 60 'test/scoped_error_ignorer.cc', |
| 59 'test/scoped_error_ignorer.h', | 61 'test/scoped_error_ignorer.h', |
| 60 ], | 62 ], |
| 61 'include_dirs': [ | 63 'include_dirs': [ |
| 62 '..', | 64 '..', |
| 63 ], | 65 ], |
| 64 'direct_dependent_settings': { | 66 'direct_dependent_settings': { |
| 65 'include_dirs': [ | 67 'include_dirs': [ |
| 66 '..', | 68 '..', |
| 67 ], | 69 ], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'variables': { | 122 'variables': { |
| 121 'test_suite_name': 'sql_unittests', | 123 'test_suite_name': 'sql_unittests', |
| 122 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', | 124 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', |
| 123 }, | 125 }, |
| 124 'includes': [ '../build/apk_test.gypi' ], | 126 'includes': [ '../build/apk_test.gypi' ], |
| 125 }, | 127 }, |
| 126 ], | 128 ], |
| 127 }], | 129 }], |
| 128 ], | 130 ], |
| 129 } | 131 } |
| OLD | NEW |