summaryrefslogtreecommitdiffstats
path: root/gpu/gpu.gyp
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 21:06:47 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 21:06:47 +0000
commit34d9cbe433eef929fcc9e9d8b8e4ceb9fe84e7b7 (patch)
tree4179425ea03c9ee148e89b703ce0edb1ce2a07cc /gpu/gpu.gyp
parentc1823aa513cae301ce28438e62b0eab05c3a4e5f (diff)
downloadchromium_src-34d9cbe433eef929fcc9e9d8b8e4ceb9fe84e7b7.zip
chromium_src-34d9cbe433eef929fcc9e9d8b8e4ceb9fe84e7b7.tar.gz
chromium_src-34d9cbe433eef929fcc9e9d8b8e4ceb9fe84e7b7.tar.bz2
Implemented PGL library, an EGL like API for Pepper. Updated Pepper test plugin to use it.
TEST=none yet BUG=none Review URL: http://codereview.chromium.org/545052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gpu.gyp')
-rw-r--r--gpu/gpu.gyp24
1 files changed, 24 insertions, 0 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
index 8a51c05..3185f5b 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -361,6 +361,30 @@
'command_buffer/client/gles2_demo_cc.cc',
],
},
+ {
+ 'target_name': 'pgl',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'command_buffer_client',
+ 'gles2_c_lib',
+ '../third_party/npapi/npapi.gyp:npapi',
+ ],
+ 'include_dirs': [
+ '..',
+ '../third_party/npapi/bindings',
+ ],
+ 'all_dependent_settings': {
+ 'include_dirs': [
+ '../third_party/npapi/bindings',
+ ],
+ },
+ 'sources': [
+ 'pgl/command_buffer_pepper.cc',
+ 'pgl/command_buffer_pepper.h',
+ 'pgl/pgl.cc',
+ 'pgl/pgl.h',
+ ],
+ },
],
'conditions': [
['OS == "win"',