diff options
author | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-29 17:22:50 +0000 |
---|---|---|
committer | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-29 17:22:50 +0000 |
commit | 26ce20d5512fadbcfeb3462656da42ce42b67803 (patch) | |
tree | d2bf4c1a80f81e722d06c37b03772aefe9bbbdfc /build/linux/system.gyp | |
parent | 54743a5071e673a394501c3da0f3de7409cf3891 (diff) | |
download | chromium_src-26ce20d5512fadbcfeb3462656da42ce42b67803.zip chromium_src-26ce20d5512fadbcfeb3462656da42ce42b67803.tar.gz chromium_src-26ce20d5512fadbcfeb3462656da42ce42b67803.tar.bz2 |
GBM Ozone implementation
Adding an accelerated platform for the X11-less build. This uses GBM (EGL_MESA_platform_gbm) as the backing Mesa platform.
BUG=377497
Review URL: https://codereview.chromium.org/106633002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273509 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux/system.gyp')
-rw-r--r-- | build/linux/system.gyp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index ee2e42f1..9ad356a 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -402,6 +402,24 @@ }, ], }], + ['ozone_platform_gbm==1', { + 'targets': [ + { + 'target_name': 'gbm', + 'type': 'none', + 'direct_dependent_settings': { + 'cflags': [ + '<!@(<(pkg-config) --cflags gbm)', + ], + }, + 'link_settings': { + 'libraries': [ + '<!@(<(pkg-config) --libs-only-l gbm)', + ], + }, + }, + ], + }], ], # conditions 'targets': [ { |