diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 19:08:22 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 19:08:22 +0000 |
commit | 27ceaa12686624111f122f746e04536a57adaa53 (patch) | |
tree | 026ba66a6be1b323b5b1199761c9f4b7bac1f258 /third_party | |
parent | 982f20f7bb4633a9735f93069139c9953b45b38b (diff) | |
download | chromium_src-27ceaa12686624111f122f746e04536a57adaa53.zip chromium_src-27ceaa12686624111f122f746e04536a57adaa53.tar.gz chromium_src-27ceaa12686624111f122f746e04536a57adaa53.tar.bz2 |
Remove xmlcatalog and xmllint from the build since we're not actually
using them for anything.
Review URL: http://codereview.chromium.org/192068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25893 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/libxml/README.chromium | 1 | ||||
-rw-r--r-- | third_party/libxml/libxml.gyp | 49 | ||||
-rw-r--r-- | third_party/libxml/xmlcatalog_dummy.cc | 2 | ||||
-rw-r--r-- | third_party/libxml/xmllint_dummy.cc | 2 |
4 files changed, 0 insertions, 54 deletions
diff --git a/third_party/libxml/README.chromium b/third_party/libxml/README.chromium index 8c7a407..659e650 100644 --- a/third_party/libxml/README.chromium +++ b/third_party/libxml/README.chromium @@ -17,7 +17,6 @@ includes the following modifications : (http://bugzilla.gnome.org/show_bug.cgi?id=502960 ) * Applied security patch located at https://bugzilla.redhat.com/show_bug.cgi?id=461015 * Applied v2.6.26 version of security patch located at https://bugzilla.redhat.com/show_bug.cgi?id=515195 -* Add an empty source file, xmldummy_mac.cc, to the tree to work around an Xcode bug. Current version: 2.6.32 diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index 4d154bc9..f785fd7 100644 --- a/third_party/libxml/libxml.gyp +++ b/third_party/libxml/libxml.gyp @@ -184,54 +184,5 @@ }], ], }, - { - 'target_name': 'xmlcatalog', - 'type': 'executable', - 'sources': [ - 'xmlcatalog.c', - 'xmlcatalog_dummy.cc', - ], - 'include_dirs': [ - '<(os_include)', - ], - 'dependencies': [ - 'libxml', - ], - 'conditions': [ - ['OS=="linux"', { - 'link_settings': { - 'libraries': [ - '-ldl', - '-lm', - ], - }, - }], - ], - }, - { - 'target_name': 'xmllint', - 'type': 'executable', - 'sources': [ - 'xmllint.c', - 'xmllint_dummy.cc', - ], - 'include_dirs': [ - '<(os_include)', - ], - 'dependencies': [ - 'libxml', - '../icu/icu.gyp:icuuc', - ], - 'conditions': [ - ['OS=="linux"', { - 'link_settings': { - 'libraries': [ - '-ldl', - '-lm', - ], - }, - }], - ], - }, ], } diff --git a/third_party/libxml/xmlcatalog_dummy.cc b/third_party/libxml/xmlcatalog_dummy.cc deleted file mode 100644 index 7659bb7..0000000 --- a/third_party/libxml/xmlcatalog_dummy.cc +++ /dev/null @@ -1,2 +0,0 @@ -// This is a dummy C++ file to force Xcode and SCons to use -// g++ instead of gcc when linking xmlcatalog. diff --git a/third_party/libxml/xmllint_dummy.cc b/third_party/libxml/xmllint_dummy.cc deleted file mode 100644 index 7a1848d..0000000 --- a/third_party/libxml/xmllint_dummy.cc +++ /dev/null @@ -1,2 +0,0 @@ -// This is a dummy C++ file to force Xcode and SCons to use -// g++ instead of gcc when linking xmllint. |