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

Side by Side Diff: third_party/libxml/using_libxml.scons

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/bzip2/using_bzip2.scons ('k') | webkit/tools/test_shell/SConscript » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 __doc__ = """ 5 __doc__ = """
6 Settings for other components using the libxml library. 6 Settings for other components using the libxml library.
7 """ 7 """
8 8
9 Import("env") 9 Import("env")
10 10
11 env.Append( 11 env.Append(
12 CPPPATH = [ 12 CPPPATH = [
13 '$LIBXML_DIR/include', 13 '$LIBXML_DIR/include',
14 '$LIBXML_DIR/DerivedSources/include', 14 '$LIBXML_DIR/DerivedSources/include',
15 ], 15 ],
16 CPPDEFINES = [ 16 CPPDEFINES = [
17 'LIBXML_STATIC', 17 'LIBXML_STATIC',
18 ], 18 ],
19 LIBS = [ 19 LIBS = [
20 'libxml', 20 env['XML_LIB'],
21 ], 21 ],
22 ) 22 )
23 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 23 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
24 # Use of this source code is governed by a BSD-style license that can be 24 # Use of this source code is governed by a BSD-style license that can be
25 # found in the LICENSE file. 25 # found in the LICENSE file.
26 26
27 __doc__ = """ 27 __doc__ = """
28 Settings for other components using the libxml library. 28 Settings for other components using the libxml library.
29 """ 29 """
30 30
31 Import("env") 31 Import("env")
32 32
33 env.Append( 33 env.Append(
34 CPPPATH = [ 34 CPPPATH = [
35 '$LIBXML_DIR/include', 35 '$LIBXML_DIR/include',
36 '$LIBXML_DIR/DerivedSources/include', 36 '$LIBXML_DIR/DerivedSources/include',
37 ], 37 ],
38 CPPDEFINES = [ 38 CPPDEFINES = [
39 'LIBXML_STATIC', 39 'LIBXML_STATIC',
40 ], 40 ],
41 LIBS = [ 41 LIBS = [
42 'libxml', 42 env['XML_LIB'],
43 ], 43 ],
44 ) 44 )
OLDNEW
« no previous file with comments | « third_party/bzip2/using_bzip2.scons ('k') | webkit/tools/test_shell/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698