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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 7210027: Part I of many. Moving FileIO, FileRef, and FileSystem out of Dev. For now, just copying over s... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « ppapi/cpp/file_system.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 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': {
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 }, 14 },
15 'sources': [ 15 'sources': [
16 'c/pp_bool.h', 16 'c/pp_bool.h',
17 'c/pp_completion_callback.h', 17 'c/pp_completion_callback.h',
18 'c/pp_errors.h', 18 'c/pp_errors.h',
19 'c/pp_file_info.h',
19 'c/pp_input_event.h', 20 'c/pp_input_event.h',
20 'c/pp_instance.h', 21 'c/pp_instance.h',
21 'c/pp_macros.h', 22 'c/pp_macros.h',
22 'c/pp_module.h', 23 'c/pp_module.h',
23 'c/pp_point.h', 24 'c/pp_point.h',
24 'c/pp_rect.h', 25 'c/pp_rect.h',
25 'c/pp_resource.h', 26 'c/pp_resource.h',
26 'c/pp_size.h', 27 'c/pp_size.h',
27 'c/pp_stdint.h', 28 'c/pp_stdint.h',
28 'c/pp_time.h', 29 'c/pp_time.h',
29 'c/pp_var.h', 30 'c/pp_var.h',
30 'c/ppb.h', 31 'c/ppb.h',
31 'c/ppb_audio.h', 32 'c/ppb_audio.h',
32 'c/ppb_audio_config.h', 33 'c/ppb_audio_config.h',
33 'c/ppb_core.h', 34 'c/ppb_core.h',
35 'c/ppb_file_io.h',
36 'c/ppb_file_ref.h',
37 'c/ppb_file_system.h',
34 'c/ppb_graphics_2d.h', 38 'c/ppb_graphics_2d.h',
35 'c/ppb_image_data.h', 39 'c/ppb_image_data.h',
36 'c/ppb_instance.h', 40 'c/ppb_instance.h',
37 'c/ppb_messaging.h', 41 'c/ppb_messaging.h',
38 'c/ppb_url_loader.h', 42 'c/ppb_url_loader.h',
39 'c/ppb_url_request_info.h', 43 'c/ppb_url_request_info.h',
40 'c/ppb_url_response_info.h', 44 'c/ppb_url_response_info.h',
41 'c/ppb_var.h', 45 'c/ppb_var.h',
42 'c/ppp.h', 46 'c/ppp.h',
43 'c/ppp_instance.h', 47 'c/ppp_instance.h',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 ], 130 ],
127 'sources': [ 131 'sources': [
128 'cpp/audio.cc', 132 'cpp/audio.cc',
129 'cpp/audio.h', 133 'cpp/audio.h',
130 'cpp/audio_config.cc', 134 'cpp/audio_config.cc',
131 'cpp/audio_config.h', 135 'cpp/audio_config.h',
132 'cpp/common.h', 136 'cpp/common.h',
133 'cpp/completion_callback.h', 137 'cpp/completion_callback.h',
134 'cpp/core.cc', 138 'cpp/core.cc',
135 'cpp/core.h', 139 'cpp/core.h',
140 'cpp/file_io.cc',
141 'cpp/file_io.h',
142 'cpp/file_ref.cc',
143 'cpp/file_ref.h',
144 'cpp/file_system.cc',
145 'cpp/file_system.h',
136 'cpp/graphics_2d.cc', 146 'cpp/graphics_2d.cc',
137 'cpp/graphics_2d.h', 147 'cpp/graphics_2d.h',
138 'cpp/image_data.cc', 148 'cpp/image_data.cc',
139 'cpp/image_data.h', 149 'cpp/image_data.h',
140 'cpp/instance.cc', 150 'cpp/instance.cc',
141 'cpp/instance.h', 151 'cpp/instance.h',
142 'cpp/logging.h', 152 'cpp/logging.h',
143 'cpp/module.cc', 153 'cpp/module.cc',
144 'cpp/module.h', 154 'cpp/module.h',
145 'cpp/module_impl.h', 155 'cpp/module_impl.h',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 }], 275 }],
266 ['OS=="mac"', { 276 ['OS=="mac"', {
267 'xcode_settings': { 277 'xcode_settings': {
268 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 278 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
269 }, 279 },
270 }] 280 }]
271 ], 281 ],
272 }, 282 },
273 ], 283 ],
274 } 284 }
OLDNEW
« no previous file with comments | « ppapi/cpp/file_system.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698