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

Unified Diff: chrome/SConscript

Issue 10626: Allow chromium to be built with some system libs by introducing... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/SConscript.main ('k') | chrome/tools/test/image_diff/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/SConscript
===================================================================
--- chrome/SConscript (revision 5286)
+++ chrome/SConscript (working copy)
@@ -392,10 +392,13 @@
sconscript_files = [
'test/chrome_plugin/SConscript',
'tools/test/image_diff/SConscript',
- 'third_party/hunspell/SConscript',
- '$THIRD_PARTY_DIR/sqlite/SConscript',
]
+if not env.WantSystemLib('hunspell'):
+ sconscript_files.append('third_party/hunspell/SConscript')
+if not env.WantSystemLib('sqlite'):
+ sconscript_files.append('$THIRD_PARTY_DIR/sqlite/SConscript')
+
# TODO(port)
if env['PLATFORM'] == 'win32':
sconscript_files.extend([
« no previous file with comments | « build/SConscript.main ('k') | chrome/tools/test/image_diff/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698