diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 22:34:30 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 22:34:30 +0000 |
commit | 9ca8a523133e80ad0f0a6d4ae48c216f119692ef (patch) | |
tree | b3988c9c43612551bda255fd367d9d73475b8ee3 /gpu/command_buffer/command_buffer.gyp | |
parent | b9a383d78d91cce289b8208d730319a23e1c2c3e (diff) | |
download | chromium_src-9ca8a523133e80ad0f0a6d4ae48c216f119692ef.zip chromium_src-9ca8a523133e80ad0f0a6d4ae48c216f119692ef.tar.gz chromium_src-9ca8a523133e80ad0f0a6d4ae48c216f119692ef.tar.bz2 |
Add gpu targets to untrusted build, and add Graphics3D code to untrusted build.
BUG=116317
TEST=builds,manual
With this change, the IPC-based PPAPI proxy builds all code needed for 3d and OpenGL ES.
Review URL: https://chromiumcodereview.appspot.com/10837145
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150432 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/command_buffer.gyp')
-rw-r--r-- | gpu/command_buffer/command_buffer.gyp | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/gpu/command_buffer/command_buffer.gyp b/gpu/command_buffer/command_buffer.gyp index dffac1c..7a4c10a 100644 --- a/gpu/command_buffer/command_buffer.gyp +++ b/gpu/command_buffer/command_buffer.gyp @@ -6,13 +6,16 @@ 'variables': { 'chromium_code': 1, }, + 'includes': [ + 'command_buffer.gypi', + ], 'targets': [ { 'target_name': 'gles2_utils', 'type': '<(component)', - 'include_dirs': [ - '<(DEPTH)/third_party/khronos', - ], + 'variables': { + 'gles2_utils_target': 1, + }, 'all_dependent_settings': { 'include_dirs': [ '<(DEPTH)/third_party/khronos', @@ -24,17 +27,6 @@ 'export_dependent_settings': [ '../../base/base.gyp:base', ], - 'defines': [ - 'GLES2_UTILS_IMPLEMENTATION', - ], - 'sources': [ - 'common/gles2_cmd_format.h', - 'common/gles2_cmd_utils.cc', - 'common/gles2_cmd_utils.h', - 'common/gles2_utils_export.h', - 'common/logging.cc', - 'common/logging.h', - ], }, ], } |