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

Side by Side Diff: third_party/sqlite/sqlite.gyp

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « third_party/snappy/snappy.gyp ('k') | third_party/undoview/undoview.gyp » ('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 'use_system_sqlite%': 0, 7 'use_system_sqlite%': 0,
8 'required_sqlite_version': '3.6.1', 8 'required_sqlite_version': '3.6.1',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'link_settings': { 59 'link_settings': {
60 'ldflags': [ 60 'ldflags': [
61 '<!@(pkg-config --libs-only-L --libs-only-other sqlite3)', 61 '<!@(pkg-config --libs-only-L --libs-only-other sqlite3)',
62 ], 62 ],
63 'libraries': [ 63 'libraries': [
64 '<!@(pkg-config --libs-only-l sqlite3)', 64 '<!@(pkg-config --libs-only-l sqlite3)',
65 ], 65 ],
66 }, 66 },
67 }, { # else: OS != "linux" or ! use_system_sqlite 67 }, { # else: OS != "linux" or ! use_system_sqlite
68 'product_name': 'sqlite3', 68 'product_name': 'sqlite3',
69 'type': '<(library)', 69 'type': 'static_library',
70 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9', 70 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9',
71 'sources': [ 71 'sources': [
72 'amalgamation/sqlite3.h', 72 'amalgamation/sqlite3.h',
73 'amalgamation/sqlite3.c', 73 'amalgamation/sqlite3.c',
74 # fts2.c currently has a lot of conflicts when added to 74 # fts2.c currently has a lot of conflicts when added to
75 # the amalgamation. It is probably not worth fixing that. 75 # the amalgamation. It is probably not worth fixing that.
76 'src/ext/fts2/fts2.c', 76 'src/ext/fts2/fts2.c',
77 'src/ext/fts2/fts2.h', 77 'src/ext/fts2/fts2.h',
78 'src/ext/fts2/fts2_hash.c', 78 'src/ext/fts2/fts2_hash.c',
79 'src/ext/fts2/fts2_hash.h', 79 'src/ext/fts2/fts2_hash.h',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ], 145 ],
146 },] 146 },]
147 ], 147 ],
148 } 148 }
149 149
150 # Local Variables: 150 # Local Variables:
151 # tab-width:2 151 # tab-width:2
152 # indent-tabs-mode:nil 152 # indent-tabs-mode:nil
153 # End: 153 # End:
154 # vim: set expandtab tabstop=2 shiftwidth=2: 154 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « third_party/snappy/snappy.gyp ('k') | third_party/undoview/undoview.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698