Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: sql/sql.gyp

Issue 1306863006: [sqlite] Respect the gyp and gn component switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back to final CL to land. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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', 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
17 ], 17 ],
18 'export_dependent_settings': [ 18 'export_dependent_settings': [
19 '../base/base.gyp:base', 19 '../base/base.gyp:base',
20 ], 20 ],
21 'defines': [ 'SQL_IMPLEMENTATION' ], 21 'defines': [ 'SQL_IMPLEMENTATION' ],
22 'sources': [ 22 'sources': [
23 'connection.cc', 23 'connection.cc',
24 'connection.h', 24 'connection.h',
25 'error_delegate_util.cc', 25 'error_delegate_util.cc',
26 'error_delegate_util.h', 26 'error_delegate_util.h',
27 'init_status.h', 27 'init_status.h',
28 'meta_table.cc', 28 'meta_table.cc',
29 'meta_table.h', 29 'meta_table.h',
30 'proxy.cc',
31 'proxy.h',
32 'recovery.cc', 30 'recovery.cc',
33 'recovery.h', 31 'recovery.h',
34 'statement.cc', 32 'statement.cc',
35 'statement.h', 33 'statement.h',
36 'transaction.cc', 34 'transaction.cc',
37 'transaction.h', 35 'transaction.h',
38 ], 36 ],
39 'include_dirs': [ 37 'include_dirs': [
40 '..', 38 '..',
41 ], 39 ],
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 '../build/isolate.gypi', 152 '../build/isolate.gypi',
155 ], 153 ],
156 'sources': [ 154 'sources': [
157 'sql_unittests.isolate', 155 'sql_unittests.isolate',
158 ], 156 ],
159 }, 157 },
160 ], 158 ],
161 }], 159 }],
162 ], 160 ],
163 } 161 }
OLDNEW
« no previous file with comments | « sql/proxy.cc ('k') | third_party/sqlite/BUILD.gn » ('j') | third_party/sqlite/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698