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

Side by Side Diff: runtime/bin/net/sqlite.gyp

Issue 11365165: Change names of all NSS gyp targets, so they don't conflict with the Chromium target names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6 # for details. All rights reserved. Use of this source code is governed by a 6 # for details. All rights reserved. Use of this source code is governed by a
7 # BSD-style license that can be found in the LICENSE file. 7 # BSD-style license that can be found in the LICENSE file.
8 8
9 # This file is a modified copy of Chromium's src/third_party/sqlite/sqlite.gyp. 9 # This file is a modified copy of Chromium's src/third_party/sqlite/sqlite.gyp.
10 # Revision 165464 (this should agree with "nss_rev" in DEPS). 10 # Revision 165464 (this should agree with "nss_rev" in DEPS).
(...skipping 18 matching lines...) Expand all
29 # Disabled by Dart: An external module with advanced unicode functions. 29 # Disabled by Dart: An external module with advanced unicode functions.
30 # 'SQLITE_ENABLE_ICU', 30 # 'SQLITE_ENABLE_ICU',
31 'SQLITE_ENABLE_MEMORY_MANAGEMENT', 31 'SQLITE_ENABLE_MEMORY_MANAGEMENT',
32 'SQLITE_SECURE_DELETE', 32 'SQLITE_SECURE_DELETE',
33 'THREADSAFE', 33 'THREADSAFE',
34 '_HAS_EXCEPTIONS=0', 34 '_HAS_EXCEPTIONS=0',
35 ], 35 ],
36 }, 36 },
37 'targets': [ 37 'targets': [
38 { 38 {
39 'target_name': 'sqlite', 39 'target_name': 'sqlite_dart',
40 'conditions': [ 40 'conditions': [
41 [ 'chromeos==1' , { 41 [ 'chromeos==1' , {
42 'defines': [ 42 'defines': [
43 # Despite obvious warnings about not using this flag 43 # Despite obvious warnings about not using this flag
44 # in deployment, we are turning off sync in ChromeOS 44 # in deployment, we are turning off sync in ChromeOS
45 # and relying on the underlying journaling filesystem 45 # and relying on the underlying journaling filesystem
46 # to do error recovery properly. It's much faster. 46 # to do error recovery properly. It's much faster.
47 'SQLITE_NO_SYNC', 47 'SQLITE_NO_SYNC',
48 ], 48 ],
49 }, 49 },
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 ], 180 ],
181 'conditions': [ 181 'conditions': [
182 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', { 182 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', {
183 'targets': [ 183 'targets': [
184 { 184 {
185 'target_name': 'sqlite_shell_dart', 185 'target_name': 'sqlite_shell_dart',
186 'type': 'executable', 186 'type': 'executable',
187 'dependencies': [ 187 'dependencies': [
188 # Disabled by Dart. 188 # Disabled by Dart.
189 # '../icu/icu.gyp:icuuc', 189 # '../icu/icu.gyp:icuuc',
190 'sqlite', 190 'sqlite_dart',
191 ], 191 ],
192 'sources': [ 192 'sources': [
193 '<(sqlite_directory)/src/src/shell.c', 193 '<(sqlite_directory)/src/src/shell.c',
194 '<(sqlite_directory)/src/src/shell_icu_linux.c', 194 '<(sqlite_directory)/src/src/shell_icu_linux.c',
195 ], 195 ],
196 'link_settings': { 196 'link_settings': {
197 'link_languages': ['c++'], 197 'link_languages': ['c++'],
198 }, 198 },
199 }, 199 },
200 ], 200 ],
201 },] 201 },]
202 ], 202 ],
203 } 203 }
OLDNEW
« runtime/bin/bin.gypi ('K') | « runtime/bin/net/nss.gyp ('k') | runtime/bin/net/ssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698