diff options
author | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2014-10-24 18:20:46 +0200 |
---|---|---|
committer | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2014-10-24 16:21:35 +0000 |
commit | ec3246c03b35b330266ef3c26b651ab2f5876d19 (patch) | |
tree | fa55759633c7e8ff31b1dcccf2bc147946feb1d4 /third_party/libxml | |
parent | a63d19ef4e8e279552b41b5561d3f17b41cbc7ce (diff) | |
download | chromium_src-ec3246c03b35b330266ef3c26b651ab2f5876d19.zip chromium_src-ec3246c03b35b330266ef3c26b651ab2f5876d19.tar.gz chromium_src-ec3246c03b35b330266ef3c26b651ab2f5876d19.tar.bz2 |
Check in executable for iOS test launcher
This doesn't do anything yet, mostly adds supporting infrastructure.
R=lliabraa@chromium.org, mark@chromium.org, sdefresne@chromium.org, lliabraa, mark, sdefresne
TBR=darin
BUG=426870
Review URL: https://codereview.chromium.org/669673004
Cr-Commit-Position: refs/heads/master@{#301119}
Diffstat (limited to 'third_party/libxml')
-rw-r--r-- | third_party/libxml/libxml.gyp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index 3e6f615..44b2e75 100644 --- a/third_party/libxml/libxml.gyp +++ b/third_party/libxml/libxml.gyp @@ -18,6 +18,7 @@ 'targets': [ { 'target_name': 'libxml', + 'toolsets': ['host', 'target'], 'conditions': [ ['use_system_libxml', { 'conditions': [ @@ -51,7 +52,14 @@ }, }], ['OS == "ios"', { - 'type': 'none', + 'type': 'static_library', + 'sources': [ + 'chromium/libxml_utils.h', + 'chromium/libxml_utils.cc', + ], + 'include_dirs': [ + '$(SDKROOT)/usr/include/libxml2', + ], 'all_dependent_settings': { 'defines': [ 'USE_SYSTEM_LIBXML', |