diff options
author | spang@chromium.org <spang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 18:22:44 +0000 |
---|---|---|
committer | spang@chromium.org <spang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 18:22:44 +0000 |
commit | f93c2c94d7fbe07746cc059d9ac9c27bea6e56fa (patch) | |
tree | fb586fe86db8920318a61db18c7a336aee78886f /build | |
parent | 6fa5f6781038c63421b203556fa74efbe78e925f (diff) | |
download | chromium_src-f93c2c94d7fbe07746cc059d9ac9c27bea6e56fa.zip chromium_src-f93c2c94d7fbe07746cc059d9ac9c27bea6e56fa.tar.gz chromium_src-f93c2c94d7fbe07746cc059d9ac9c27bea6e56fa.tar.bz2 |
Implement OzonePlatform
This provides a way to select an ozone implementation to use at build time.
It replaces the previous ad-hoc requirement to inject implementations of
ozone interfaces somewhere during initialization, such as by overriding
ContentMainDelegate::PreSandboxStartup(). That requirement made it
difficult for external ozone implementations to build internal targets such
as content_shell because those targets do not initialize the external ozone
implementation without additional patching. Enabling external ports of
chromium is one of the main goals of ozone.
The OzonePlatform code is located at ui/ozone and depends on code in
ui/gfx and ui/events because it must inject implementations into
those components. The ozone platform is initialized from
ui/aura or ui/gl, as those components need the interfaces provided by ozone
in order to function.
There are two in-tree platforms currently: test (image dump) and dri
(libdrm-based direct rendering). The platform is selected by the setting
ozone_platform gyp variable and defaults to "test".
Review URL: https://codereview.chromium.org/44933002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 873ee17..e4725cc 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1792,6 +1792,10 @@ [ 'chromeos==1', { 'use_brlapi%': 1, }], + + ['use_ozone==1', { + 'ozone_platform%': "test", + }], ], |