diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-04 08:38:10 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-04 08:38:10 +0000 |
commit | d254e7e05b9e0b54c0e04eaa6c4a8b1bc2ca7310 (patch) | |
tree | c3666d45898abc4eaed64541ceceb2e12a243cde /content/content_gpu.gypi | |
parent | 150f5ecaae1990831fe472cbc66b2f2d61901b7f (diff) | |
download | chromium_src-d254e7e05b9e0b54c0e04eaa6c4a8b1bc2ca7310.zip chromium_src-d254e7e05b9e0b54c0e04eaa6c4a8b1bc2ca7310.tar.gz chromium_src-d254e7e05b9e0b54c0e04eaa6c4a8b1bc2ca7310.tar.bz2 |
Only dlopen() OMX/VAAPI libs in the GPU process, and only lazily dlsym() their symbols.
This reinstates r150007, which was reverted in r150009.
TBR=piman@chromium.org
BUG=140412
Review URL: https://chromiumcodereview.appspot.com/10827173
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150024 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_gpu.gypi')
-rw-r--r-- | content/content_gpu.gypi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/content/content_gpu.gypi b/content/content_gpu.gypi index 3327a69..d55093c 100644 --- a/content/content_gpu.gypi +++ b/content/content_gpu.gypi @@ -100,5 +100,15 @@ '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', ], }], + ['target_arch=="arm" and chromeos == 1', { + 'include_dirs': [ + '<(DEPTH)/third_party/openmax/il', + ], + }], + ['target_arch!="arm" and chromeos == 1', { + 'include_dirs': [ + '<(DEPTH)/third_party/libva', + ], + }], ], } |