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 { |
11 'target_name': 'sql', | 11 'target_name': 'sql', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../third_party/sqlite/sqlite.gyp:sqlite', | 15 '../third_party/sqlite/sqlite.gyp:sqlite', |
16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | |
Alexander Potapenko
2013/07/12 12:35:44
Why do you need a dependency on the dynamic annota
Scott Hess - ex-Googler
2013/07/12 17:29:26
It's necessary for the lazy initializer. I think,
| |
16 ], | 17 ], |
17 'export_dependent_settings': [ | 18 'export_dependent_settings': [ |
18 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
19 ], | 20 ], |
20 'defines': [ 'SQL_IMPLEMENTATION' ], | 21 'defines': [ 'SQL_IMPLEMENTATION' ], |
21 'sources': [ | 22 'sources': [ |
22 'connection.cc', | 23 'connection.cc', |
23 'connection.h', | 24 'connection.h', |
24 'error_delegate_util.cc', | 25 'error_delegate_util.cc', |
25 'error_delegate_util.h', | 26 'error_delegate_util.h', |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
120 'variables': { | 121 'variables': { |
121 'test_suite_name': 'sql_unittests', | 122 'test_suite_name': 'sql_unittests', |
122 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', | 123 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', |
123 }, | 124 }, |
124 'includes': [ '../build/apk_test.gypi' ], | 125 'includes': [ '../build/apk_test.gypi' ], |
125 }, | 126 }, |
126 ], | 127 ], |
127 }], | 128 }], |
128 ], | 129 ], |
129 } | 130 } |
OLD | NEW |