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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 7300010: Add PPB_Memory_Dev. This is the first of a few CLs needed to pull MemAlloc and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing file. Created 9 years, 5 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ppapi_c', 8 'target_name': 'ppapi_c',
9 'type': 'none', 9 'type': 'none',
10 'all_dependent_settings': { 10 'all_dependent_settings': {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'c/dev/ppb_directory_reader_dev.h', 61 'c/dev/ppb_directory_reader_dev.h',
62 'c/dev/ppb_file_chooser_dev.h', 62 'c/dev/ppb_file_chooser_dev.h',
63 'c/dev/ppb_file_io_dev.h', 63 'c/dev/ppb_file_io_dev.h',
64 'c/dev/ppb_file_io_trusted_dev.h', 64 'c/dev/ppb_file_io_trusted_dev.h',
65 'c/dev/ppb_file_ref_dev.h', 65 'c/dev/ppb_file_ref_dev.h',
66 'c/dev/ppb_file_system_dev.h', 66 'c/dev/ppb_file_system_dev.h',
67 'c/dev/ppb_find_dev.h', 67 'c/dev/ppb_find_dev.h',
68 'c/dev/ppb_font_dev.h', 68 'c/dev/ppb_font_dev.h',
69 'c/dev/ppb_fullscreen_dev.h', 69 'c/dev/ppb_fullscreen_dev.h',
70 'c/dev/ppb_graphics_3d_dev.h', 70 'c/dev/ppb_graphics_3d_dev.h',
71 'c/dev/ppb_memory_dev.h',
71 'c/dev/ppb_opengles_dev.h', 72 'c/dev/ppb_opengles_dev.h',
72 'c/dev/ppb_scrollbar_dev.h', 73 'c/dev/ppb_scrollbar_dev.h',
73 'c/dev/ppb_surface_3d_dev.h', 74 'c/dev/ppb_surface_3d_dev.h',
74 'c/dev/ppb_testing_dev.h', 75 'c/dev/ppb_testing_dev.h',
75 'c/dev/ppb_url_util_dev.h', 76 'c/dev/ppb_url_util_dev.h',
76 'c/dev/ppb_video_decoder_dev.h', 77 'c/dev/ppb_video_decoder_dev.h',
77 'c/dev/ppb_widget_dev.h', 78 'c/dev/ppb_widget_dev.h',
78 'c/dev/ppb_zoom_dev.h', 79 'c/dev/ppb_zoom_dev.h',
79 'c/dev/ppp_cursor_control_dev.h', 80 'c/dev/ppp_cursor_control_dev.h',
80 'c/dev/ppp_find_dev.h', 81 'c/dev/ppp_find_dev.h',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 'cpp/dev/find_dev.cc', 195 'cpp/dev/find_dev.cc',
195 'cpp/dev/find_dev.h', 196 'cpp/dev/find_dev.h',
196 'cpp/dev/font_dev.cc', 197 'cpp/dev/font_dev.cc',
197 'cpp/dev/font_dev.h', 198 'cpp/dev/font_dev.h',
198 'cpp/dev/fullscreen_dev.cc', 199 'cpp/dev/fullscreen_dev.cc',
199 'cpp/dev/fullscreen_dev.h', 200 'cpp/dev/fullscreen_dev.h',
200 'cpp/dev/graphics_3d_client_dev.cc', 201 'cpp/dev/graphics_3d_client_dev.cc',
201 'cpp/dev/graphics_3d_client_dev.h', 202 'cpp/dev/graphics_3d_client_dev.h',
202 'cpp/dev/graphics_3d_dev.cc', 203 'cpp/dev/graphics_3d_dev.cc',
203 'cpp/dev/graphics_3d_dev.h', 204 'cpp/dev/graphics_3d_dev.h',
205 'cpp/dev/memory_dev.cc',
206 'cpp/dev/memory_dev.h',
204 'cpp/dev/printing_dev.cc', 207 'cpp/dev/printing_dev.cc',
205 'cpp/dev/printing_dev.h', 208 'cpp/dev/printing_dev.h',
206 'cpp/dev/scrollbar_dev.cc', 209 'cpp/dev/scrollbar_dev.cc',
207 'cpp/dev/scrollbar_dev.h', 210 'cpp/dev/scrollbar_dev.h',
208 'cpp/dev/selection_dev.cc', 211 'cpp/dev/selection_dev.cc',
209 'cpp/dev/selection_dev.h', 212 'cpp/dev/selection_dev.h',
210 'cpp/dev/surface_3d_dev.cc', 213 'cpp/dev/surface_3d_dev.cc',
211 'cpp/dev/surface_3d_dev.h', 214 'cpp/dev/surface_3d_dev.h',
212 'cpp/dev/url_util_dev.cc', 215 'cpp/dev/url_util_dev.cc',
213 'cpp/dev/url_util_dev.h', 216 'cpp/dev/url_util_dev.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 }], 279 }],
277 ['OS=="mac"', { 280 ['OS=="mac"', {
278 'xcode_settings': { 281 'xcode_settings': {
279 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 282 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
280 }, 283 },
281 }] 284 }]
282 ], 285 ],
283 }, 286 },
284 ], 287 ],
285 } 288 }
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/memory_dev.cc ('k') | ppapi/ppapi_tests.gypi » ('j') | ppapi/tests/test_memory.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698