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

Side by Side Diff: sql/sql.gyp

Issue 8506027: build sql as a component - this will help ensure there is only one copy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't export DiagnosticErrorDelegate Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « sql/meta_table.h ('k') | sql/sql_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'static_library', 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 ], 16 ],
17 'defines': [ 'SQL_IMPLEMENTATION' ],
17 'sources': [ 18 'sources': [
18 'connection.cc', 19 'connection.cc',
19 'connection.h', 20 'connection.h',
20 'diagnostic_error_delegate.h', 21 'diagnostic_error_delegate.h',
21 'init_status.h', 22 'init_status.h',
22 'meta_table.cc', 23 'meta_table.cc',
23 'meta_table.h', 24 'meta_table.h',
24 'statement.cc', 25 'statement.cc',
25 'statement.h', 26 'statement.h',
26 'transaction.cc', 27 'transaction.cc',
(...skipping 25 matching lines...) Expand all
52 'dependencies': [ 53 'dependencies': [
53 '../base/allocator/allocator.gyp:allocator', 54 '../base/allocator/allocator.gyp:allocator',
54 ], 55 ],
55 }], 56 }],
56 ], 57 ],
57 }], 58 }],
58 ], 59 ],
59 }, 60 },
60 ], 61 ],
61 } 62 }
OLDNEW
« no previous file with comments | « sql/meta_table.h ('k') | sql/sql_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698