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

Side by Side Diff: ppapi/ppapi.gyp

Issue 6047008: Added ppapi::Surface3D. This CL completes the new Pepper3D interface. The imp... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 12 months 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'c/dev/ppb_file_io_dev.h', 80 'c/dev/ppb_file_io_dev.h',
81 'c/dev/ppb_file_io_trusted_dev.h', 81 'c/dev/ppb_file_io_trusted_dev.h',
82 'c/dev/ppb_file_ref_dev.h', 82 'c/dev/ppb_file_ref_dev.h',
83 'c/dev/ppb_file_system_dev.h', 83 'c/dev/ppb_file_system_dev.h',
84 'c/dev/ppb_find_dev.h', 84 'c/dev/ppb_find_dev.h',
85 'c/dev/ppb_font_dev.h', 85 'c/dev/ppb_font_dev.h',
86 'c/dev/ppb_fullscreen_dev.h', 86 'c/dev/ppb_fullscreen_dev.h',
87 'c/dev/ppb_graphics_3d_dev.h', 87 'c/dev/ppb_graphics_3d_dev.h',
88 'c/dev/ppb_opengles_dev.h', 88 'c/dev/ppb_opengles_dev.h',
89 'c/dev/ppb_scrollbar_dev.h', 89 'c/dev/ppb_scrollbar_dev.h',
90 'c/dev/ppb_surface_3d_dev.h',
90 'c/dev/ppb_testing_dev.h', 91 'c/dev/ppb_testing_dev.h',
91 'c/dev/ppb_transport_dev.h', 92 'c/dev/ppb_transport_dev.h',
92 'c/dev/ppb_url_util_dev.h', 93 'c/dev/ppb_url_util_dev.h',
93 'c/dev/ppb_video_decoder_dev.h', 94 'c/dev/ppb_video_decoder_dev.h',
94 'c/dev/ppb_widget_dev.h', 95 'c/dev/ppb_widget_dev.h',
95 'c/dev/ppb_zoom_dev.h', 96 'c/dev/ppb_zoom_dev.h',
96 'c/dev/ppp_cursor_control_dev.h', 97 'c/dev/ppp_cursor_control_dev.h',
97 'c/dev/ppp_find_dev.h', 98 'c/dev/ppp_find_dev.h',
98 'c/dev/ppp_graphics_3d_dev.h', 99 'c/dev/ppp_graphics_3d_dev.h',
99 'c/dev/ppp_scrollbar_dev.h', 100 'c/dev/ppp_scrollbar_dev.h',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 'cpp/dev/graphics_3d_client_dev.cc', 190 'cpp/dev/graphics_3d_client_dev.cc',
190 'cpp/dev/graphics_3d_client_dev.h', 191 'cpp/dev/graphics_3d_client_dev.h',
191 'cpp/dev/graphics_3d_dev.cc', 192 'cpp/dev/graphics_3d_dev.cc',
192 'cpp/dev/graphics_3d_dev.h', 193 'cpp/dev/graphics_3d_dev.h',
193 'cpp/dev/printing_dev.cc', 194 'cpp/dev/printing_dev.cc',
194 'cpp/dev/printing_dev.h', 195 'cpp/dev/printing_dev.h',
195 'cpp/dev/scrollbar_dev.cc', 196 'cpp/dev/scrollbar_dev.cc',
196 'cpp/dev/scrollbar_dev.h', 197 'cpp/dev/scrollbar_dev.h',
197 'cpp/dev/selection_dev.cc', 198 'cpp/dev/selection_dev.cc',
198 'cpp/dev/selection_dev.h', 199 'cpp/dev/selection_dev.h',
200 'cpp/dev/surface_3d_dev.cc',
201 'cpp/dev/surface_3d_dev.h',
199 'cpp/dev/transport_dev.cc', 202 'cpp/dev/transport_dev.cc',
200 'cpp/dev/transport_dev.h', 203 'cpp/dev/transport_dev.h',
201 'cpp/dev/url_util_dev.cc', 204 'cpp/dev/url_util_dev.cc',
202 'cpp/dev/url_util_dev.h', 205 'cpp/dev/url_util_dev.h',
203 'cpp/dev/video_decoder_dev.cc', 206 'cpp/dev/video_decoder_dev.cc',
204 'cpp/dev/video_decoder_dev.h', 207 'cpp/dev/video_decoder_dev.h',
205 'cpp/dev/widget_client_dev.cc', 208 'cpp/dev/widget_client_dev.cc',
206 'cpp/dev/widget_client_dev.h', 209 'cpp/dev/widget_client_dev.h',
207 'cpp/dev/widget_dev.cc', 210 'cpp/dev/widget_dev.cc',
208 'cpp/dev/widget_dev.h', 211 'cpp/dev/widget_dev.h',
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 ['OS=="win"', { 676 ['OS=="win"', {
674 }], 677 }],
675 ['OS=="linux"', { 678 ['OS=="linux"', {
676 }], 679 }],
677 ['OS=="mac"', { 680 ['OS=="mac"', {
678 }] 681 }]
679 ], 682 ],
680 }, 683 },
681 ], 684 ],
682 } 685 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698