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

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: 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
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 21 matching lines...) Expand all
32 'sources': [ 32 'sources': [
33 'shared_impl/audio_config_impl.cc', 33 'shared_impl/audio_config_impl.cc',
34 'shared_impl/audio_config_impl.h', 34 'shared_impl/audio_config_impl.h',
35 'shared_impl/audio_impl.cc', 35 'shared_impl/audio_impl.cc',
36 'shared_impl/audio_impl.h', 36 'shared_impl/audio_impl.h',
37 'shared_impl/audio_input_impl.cc', 37 'shared_impl/audio_input_impl.cc',
38 'shared_impl/audio_input_impl.h', 38 'shared_impl/audio_input_impl.h',
39 'shared_impl/char_set_impl.cc', 39 'shared_impl/char_set_impl.cc',
40 'shared_impl/char_set_impl.h', 40 'shared_impl/char_set_impl.h',
41 'shared_impl/crypto_impl.cc', 41 'shared_impl/crypto_impl.cc',
42 'shared_impl/file_io_impl.cc',
43 'shared_impl/file_io_impl.h',
42 'shared_impl/file_ref_impl.cc', 44 'shared_impl/file_ref_impl.cc',
43 'shared_impl/file_ref_impl.h', 45 'shared_impl/file_ref_impl.h',
46 'shared_impl/file_type_conversion.cc',
brettw 2011/11/30 23:00:53 I moved this from webkit/plugins/ppapi
47 'shared_impl/file_type_conversion.h',
44 'shared_impl/font_impl.cc', 48 'shared_impl/font_impl.cc',
45 'shared_impl/font_impl.h', 49 'shared_impl/font_impl.h',
46 'shared_impl/function_group_base.cc', 50 'shared_impl/function_group_base.cc',
47 'shared_impl/function_group_base.h', 51 'shared_impl/function_group_base.h',
48 'shared_impl/graphics_3d_impl.cc', 52 'shared_impl/graphics_3d_impl.cc',
49 'shared_impl/graphics_3d_impl.h', 53 'shared_impl/graphics_3d_impl.h',
50 'shared_impl/host_resource.h', 54 'shared_impl/host_resource.h',
51 'shared_impl/id_assignment.cc', 55 'shared_impl/id_assignment.cc',
52 'shared_impl/id_assignment.h', 56 'shared_impl/id_assignment.h',
53 'shared_impl/image_data_impl.cc', 57 'shared_impl/image_data_impl.cc',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'thunk/ppb_websocket_api.h', 191 'thunk/ppb_websocket_api.h',
188 'thunk/ppb_websocket_thunk.cc', 192 'thunk/ppb_websocket_thunk.cc',
189 'thunk/ppb_widget_api.h', 193 'thunk/ppb_widget_api.h',
190 'thunk/ppb_widget_thunk.cc', 194 'thunk/ppb_widget_thunk.cc',
191 'thunk/ppb_zoom_thunk.cc', 195 'thunk/ppb_zoom_thunk.cc',
192 'thunk/thunk.h', 196 'thunk/thunk.h',
193 ], 197 ],
194 }, 198 },
195 ], 199 ],
196 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698