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

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

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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/libpng/libpng.gyp ('k') | third_party/libxslt/libxslt.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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'conditions': [ 7 'conditions': [
8 ['OS=="linux"', {'os_include': 'linux'}], 8 ['OS=="linux"', {'os_include': 'linux'}],
9 ['OS=="mac"', {'os_include': 'mac'}], 9 ['OS=="mac"', {'os_include': 'mac'}],
10 ['OS=="win"', {'os_include': 'win32'}], 10 ['OS=="win"', {'os_include': 'win32'}],
(...skipping 13 matching lines...) Expand all
24 'cflags': [ 24 'cflags': [
25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxm l-2.0)', 25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxm l-2.0)',
26 ], 26 ],
27 }, 27 },
28 'link_settings': { 28 'link_settings': {
29 'libraries': [ 29 'libraries': [
30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxml- 2.0)', 30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxml- 2.0)',
31 ], 31 ],
32 }, 32 },
33 }, { # else: OS != "linux" or ! use_system_libxml 33 }, { # else: OS != "linux" or ! use_system_libxml
34 'type': 'static_library', 34 'type': '<(library)',
35 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', 35 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7',
36 'sources': [ 36 'sources': [
37 'include/libxml/c14n.h', 37 'include/libxml/c14n.h',
38 'include/libxml/catalog.h', 38 'include/libxml/catalog.h',
39 'include/libxml/chvalid.h', 39 'include/libxml/chvalid.h',
40 'include/libxml/debugXML.h', 40 'include/libxml/debugXML.h',
41 'include/libxml/dict.h', 41 'include/libxml/dict.h',
42 'include/libxml/DOCBparser.h', 42 'include/libxml/DOCBparser.h',
43 'include/libxml/encoding.h', 43 'include/libxml/encoding.h',
44 'include/libxml/entities.h', 44 'include/libxml/entities.h',
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'link_settings': { 217 'link_settings': {
218 'libraries': [ 218 'libraries': [
219 '-lm', 219 '-lm',
220 ], 220 ],
221 }, 221 },
222 }], 222 }],
223 ], 223 ],
224 }, 224 },
225 ], 225 ],
226 } 226 }
OLDNEW
« no previous file with comments | « third_party/libpng/libpng.gyp ('k') | third_party/libxslt/libxslt.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698