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

Side by Side Diff: third_party/libxslt/libxslt.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/libxml/libxml.gyp ('k') | third_party/modp_b64/modp_b64.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 libxs lt)', 25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxs lt)',
26 ], 26 ],
27 }, 27 },
28 'link_settings': { 28 'link_settings': {
29 'libraries': [ 29 'libraries': [
30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxslt )', 30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxslt )',
31 ], 31 ],
32 }, 32 },
33 }, { # else: OS != "linux" or ! use_system_libxslt 33 }, { # else: OS != "linux" or ! use_system_libxslt
34 'type': 'static_library', 34 'type': '<(library)',
35 'msvs_guid': 'FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED', 35 'msvs_guid': 'FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED',
36 'sources': [ 36 'sources': [
37 'libxslt/attributes.c', 37 'libxslt/attributes.c',
38 'libxslt/attributes.h', 38 'libxslt/attributes.h',
39 'libxslt/attrvt.c', 39 'libxslt/attrvt.c',
40 'libxslt/documents.c', 40 'libxslt/documents.c',
41 'libxslt/documents.h', 41 'libxslt/documents.h',
42 'libxslt/extensions.c', 42 'libxslt/extensions.c',
43 'libxslt/extensions.h', 43 'libxslt/extensions.h',
44 'libxslt/extra.c', 44 'libxslt/extra.c',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 ], 100 ],
101 }, 101 },
102 'conditions': [ 102 'conditions': [
103 ['OS!="win"', {'product_name': 'xslt'}], 103 ['OS!="win"', {'product_name': 'xslt'}],
104 ], 104 ],
105 }], 105 }],
106 ], 106 ],
107 }, 107 },
108 ], 108 ],
109 } 109 }
OLDNEW
« no previous file with comments | « third_party/libxml/libxml.gyp ('k') | third_party/modp_b64/modp_b64.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698