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

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

Issue 88058: Build on Linux with shared libraries (significant chunks courtesy craigsch):... (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 | « skia/skia.gyp ('k') | webkit/webkit.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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'include_dirs': [ 187 'include_dirs': [
188 '<(os_include)', 188 '<(os_include)',
189 ], 189 ],
190 'dependencies': [ 190 'dependencies': [
191 'libxml', 191 'libxml',
192 ], 192 ],
193 'conditions': [ 193 'conditions': [
194 ['OS=="linux"', { 194 ['OS=="linux"', {
195 'link_settings': { 195 'link_settings': {
196 'libraries': [ 196 'libraries': [
197 '-ldl',
197 '-lm', 198 '-lm',
198 ], 199 ],
199 }, 200 },
200 }], 201 }],
201 ], 202 ],
202 }, 203 },
203 { 204 {
204 'target_name': 'xmllint', 205 'target_name': 'xmllint',
205 'type': 'executable', 206 'type': 'executable',
206 'sources': [ 207 'sources': [
207 'xmllint.c', 208 'xmllint.c',
208 ], 209 ],
209 'include_dirs': [ 210 'include_dirs': [
210 '<(os_include)', 211 '<(os_include)',
211 ], 212 ],
212 'dependencies': [ 213 'dependencies': [
213 'libxml', 214 'libxml',
215 '../icu38/icu38.gyp:icuuc',
214 ], 216 ],
215 'conditions': [ 217 'conditions': [
216 ['OS=="linux"', { 218 ['OS=="linux"', {
217 'link_settings': { 219 'link_settings': {
218 'libraries': [ 220 'libraries': [
221 '-ldl',
219 '-lm', 222 '-lm',
220 ], 223 ],
221 }, 224 },
222 }], 225 }],
223 ], 226 ],
224 }, 227 },
225 ], 228 ],
226 } 229 }
OLDNEW
« no previous file with comments | « skia/skia.gyp ('k') | webkit/webkit.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698