Skip to content
Snippets Groups Projects
Commit 01d8849d authored by zork@chromium.org's avatar zork@chromium.org
Browse files

Fix expat.gyp to build on Linux

Review URL: http://codereview.chromium.org/212017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26585 0039d316-1c4b-4281-b951-d872f2087c98
parent 11246b5a
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@
'target_defaults': {
'defines': [
'_LIB',
'COMPILED_FROM_DSP',
'XML_STATIC', # Compile for static linkage.
],
'include_dirs': [
......@@ -40,7 +39,19 @@
'defines': [
'XML_STATIC', # Tell dependants to expect static linkage.
],
}
},
'conditions': [
['OS=="win"', {
'defines': [
'COMPILED_FROM_DSP',
],
}],
['OS=="linux"', {
'defines': [
'HAVE_EXPAT_CONFIG_H',
],
}],
],
},
],
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment