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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 8764003: Implement a proxy for Pepper FileIO. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Homestarmy Created 9 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
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('j') | 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) 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_shared', 8 'target_name': 'ppapi_shared',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 12 matching lines...) Expand all
23 'PPAPI_SHARED_IMPLEMENTATION', 23 'PPAPI_SHARED_IMPLEMENTATION',
24 'PPAPI_THUNK_IMPLEMENTATION', 24 'PPAPI_THUNK_IMPLEMENTATION',
25 ], 25 ],
26 'include_dirs': [ 26 'include_dirs': [
27 '..', 27 '..',
28 ], 28 ],
29 'export_dependent_settings': [ 29 'export_dependent_settings': [
30 '../base/base.gyp:base', 30 '../base/base.gyp:base',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 'shared_impl/file_type_conversion.cc',
34 'shared_impl/file_type_conversion.h',
33 'shared_impl/function_group_base.cc', 35 'shared_impl/function_group_base.cc',
34 'shared_impl/function_group_base.h', 36 'shared_impl/function_group_base.h',
35 'shared_impl/host_resource.h', 37 'shared_impl/host_resource.h',
36 'shared_impl/id_assignment.cc', 38 'shared_impl/id_assignment.cc',
37 'shared_impl/id_assignment.h', 39 'shared_impl/id_assignment.h',
38 'shared_impl/platform_file.cc', 40 'shared_impl/platform_file.cc',
39 'shared_impl/platform_file.h', 41 'shared_impl/platform_file.h',
40 'shared_impl/ppapi_globals.cc', 42 'shared_impl/ppapi_globals.cc',
41 'shared_impl/ppapi_globals.h', 43 'shared_impl/ppapi_globals.h',
42 'shared_impl/ppapi_preferences.cc', 44 'shared_impl/ppapi_preferences.cc',
43 'shared_impl/ppapi_preferences.h', 45 'shared_impl/ppapi_preferences.h',
44 'shared_impl/ppb_audio_config_shared.cc', 46 'shared_impl/ppb_audio_config_shared.cc',
45 'shared_impl/ppb_audio_config_shared.h', 47 'shared_impl/ppb_audio_config_shared.h',
46 'shared_impl/ppb_audio_input_shared.cc', 48 'shared_impl/ppb_audio_input_shared.cc',
47 'shared_impl/ppb_audio_input_shared.h', 49 'shared_impl/ppb_audio_input_shared.h',
48 'shared_impl/ppb_audio_shared.cc', 50 'shared_impl/ppb_audio_shared.cc',
49 'shared_impl/ppb_audio_shared.h', 51 'shared_impl/ppb_audio_shared.h',
50 'shared_impl/ppb_char_set_shared.cc', 52 'shared_impl/ppb_char_set_shared.cc',
51 'shared_impl/ppb_char_set_shared.h', 53 'shared_impl/ppb_char_set_shared.h',
52 'shared_impl/ppb_crypto_shared.cc', 54 'shared_impl/ppb_crypto_shared.cc',
55 'shared_impl/ppb_file_io_shared.cc',
56 'shared_impl/ppb_file_io_shared.h',
53 'shared_impl/ppb_file_ref_shared.cc', 57 'shared_impl/ppb_file_ref_shared.cc',
54 'shared_impl/ppb_file_ref_shared.h', 58 'shared_impl/ppb_file_ref_shared.h',
55 'shared_impl/ppb_font_shared.cc', 59 'shared_impl/ppb_font_shared.cc',
56 'shared_impl/ppb_font_shared.h', 60 'shared_impl/ppb_font_shared.h',
57 'shared_impl/ppb_graphics_3d_shared.cc', 61 'shared_impl/ppb_graphics_3d_shared.cc',
58 'shared_impl/ppb_graphics_3d_shared.h', 62 'shared_impl/ppb_graphics_3d_shared.h',
59 'shared_impl/ppb_image_data_shared.cc', 63 'shared_impl/ppb_image_data_shared.cc',
60 'shared_impl/ppb_image_data_shared.h', 64 'shared_impl/ppb_image_data_shared.h',
61 'shared_impl/ppb_input_event_shared.cc', 65 'shared_impl/ppb_input_event_shared.cc',
62 'shared_impl/ppb_input_event_shared.h', 66 'shared_impl/ppb_input_event_shared.h',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 'thunk/ppb_websocket_api.h', 192 'thunk/ppb_websocket_api.h',
189 'thunk/ppb_websocket_thunk.cc', 193 'thunk/ppb_websocket_thunk.cc',
190 'thunk/ppb_widget_api.h', 194 'thunk/ppb_widget_api.h',
191 'thunk/ppb_widget_thunk.cc', 195 'thunk/ppb_widget_thunk.cc',
192 'thunk/ppb_zoom_thunk.cc', 196 'thunk/ppb_zoom_thunk.cc',
193 'thunk/thunk.h', 197 'thunk/thunk.h',
194 ], 198 ],
195 }, 199 },
196 ], 200 ],
197 } 201 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698