Make building openmax_dl conditional in gyp.
Intentionally not modifying the GN build. R=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/48479004 Cr-Commit-Position: refs/heads/master@{#8688} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8688 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
8c5ea8a811
commit
d2c09dd339
@ -90,6 +90,7 @@
|
||||
'build_libvpx%': 1,
|
||||
'build_vp9%': 1,
|
||||
'build_ssl%': 1,
|
||||
'build_openmax_dl%': 1,
|
||||
|
||||
# Disable by default
|
||||
'have_dbus_glib%': 0,
|
||||
|
@ -118,8 +118,10 @@
|
||||
'real_fourier.cc',
|
||||
'real_fourier.h',
|
||||
],
|
||||
'dependencies': [
|
||||
'<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl',
|
||||
'conditions': [
|
||||
['build_openmax_dl==1', {
|
||||
'dependencies': ['<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl',],
|
||||
}],
|
||||
],
|
||||
}],
|
||||
['target_arch=="ia32" or target_arch=="x64"', {
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#include "third_party/openmax_dl/dl/sp/api/omxSP.h"
|
||||
#include "dl/sp/api/omxSP.h"
|
||||
#include "webrtc/base/checks.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
Loading…
Reference in New Issue
Block a user