Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Side by Side Diff: ppapi/ppapi.gyp

Issue 5927002: Moved the logic of maintaining the current context to gles2 helper library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../third_party/mesa/mesa.gypi', 7 '../third_party/mesa/mesa.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, # Use higher warning level. 10 'chromium_code': 1, # Use higher warning level.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 ], 115 ],
116 }, 116 },
117 { 117 {
118 'target_name': 'ppapi_cpp_objects', 118 'target_name': 'ppapi_cpp_objects',
119 'type': 'static_library', 119 'type': 'static_library',
120 'dependencies': [ 120 'dependencies': [
121 'ppapi_c' 121 'ppapi_c'
122 ], 122 ],
123 'include_dirs': [ 123 'include_dirs': [
124 '..', 124 '..',
125 'lib/gl/include',
125 ], 126 ],
126 'sources': [ 127 'sources': [
127 'cpp/common.h', 128 'cpp/common.h',
128 'cpp/completion_callback.h', 129 'cpp/completion_callback.h',
129 'cpp/core.cc', 130 'cpp/core.cc',
130 'cpp/core.h', 131 'cpp/core.h',
131 'cpp/graphics_2d.cc', 132 'cpp/graphics_2d.cc',
132 'cpp/graphics_2d.h', 133 'cpp/graphics_2d.h',
133 'cpp/image_data.cc', 134 'cpp/image_data.cc',
134 'cpp/image_data.h', 135 'cpp/image_data.h',
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 ['OS=="win"', { 671 ['OS=="win"', {
671 }], 672 }],
672 ['OS=="linux"', { 673 ['OS=="linux"', {
673 }], 674 }],
674 ['OS=="mac"', { 675 ['OS=="mac"', {
675 }] 676 }]
676 ], 677 ],
677 }, 678 },
678 ], 679 ],
679 } 680 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698