diff options
author | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-25 20:14:26 +0000 |
---|---|---|
committer | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-25 20:14:26 +0000 |
commit | c44af190c3f8b284155b9e18e44830a2b521e2f9 (patch) | |
tree | 8cc063856979317a61e0913da453d13df1275644 /content | |
parent | 7809f208ae61ca3fb91e258a7d4700bd3a128656 (diff) | |
download | chromium_src-c44af190c3f8b284155b9e18e44830a2b521e2f9.zip chromium_src-c44af190c3f8b284155b9e18e44830a2b521e2f9.tar.gz chromium_src-c44af190c3f8b284155b9e18e44830a2b521e2f9.tar.bz2 |
exclude the linux files that are not needed on openbsd
BUG=
TEST=
Review URL: http://codereview.chromium.org/8394002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107185 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/content_browser.gypi | 5 | ||||
-rw-r--r-- | content/content_plugin.gypi | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/content/content_browser.gypi b/content/content_browser.gypi index aaac850..ac7af6a 100644 --- a/content/content_browser.gypi +++ b/content/content_browser.gypi @@ -683,6 +683,11 @@ 'browser/renderer_host/gtk_key_bindings_handler.h', ], }], + ['OS=="openbsd"', { + 'sources/': [ + ['exclude', '^browser/geolocation/wifi_data_provider_linux\\.cc$'], + ], + }], ['touchui==1', { 'sources/': [ ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'], diff --git a/content/content_plugin.gypi b/content/content_plugin.gypi index fd7d3f4..22532b9 100644 --- a/content/content_plugin.gypi +++ b/content/content_plugin.gypi @@ -34,6 +34,11 @@ # These are layered in conditionals in the event other platforms # end up using this module as well. 'conditions': [ + ['OS=="openbsd"', { + 'sources/': [ + ['exclude', '^plugin/plugin_main_linux\\.cc$'], + ], + }], ['OS=="win"', { 'include_dirs': [ '<(DEPTH)/third_party/wtl/include', |