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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 7105013: Convert more interfaces to the new thunk system. This goes up to and including (Closed) Base URL: svn://chrome-svn/chrome/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 | « no previous file | ppapi/proxy/enter_proxy.h » ('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': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 15 matching lines...) Expand all
26 'shared_impl/audio_config_impl.cc', 26 'shared_impl/audio_config_impl.cc',
27 'shared_impl/audio_config_impl.h', 27 'shared_impl/audio_config_impl.h',
28 'shared_impl/audio_impl.cc', 28 'shared_impl/audio_impl.cc',
29 'shared_impl/audio_impl.h', 29 'shared_impl/audio_impl.h',
30 'shared_impl/char_set_impl.cc', 30 'shared_impl/char_set_impl.cc',
31 'shared_impl/char_set_impl.h', 31 'shared_impl/char_set_impl.h',
32 'shared_impl/crypto_impl.cc', 32 'shared_impl/crypto_impl.cc',
33 'shared_impl/crypto_impl.h', 33 'shared_impl/crypto_impl.h',
34 'shared_impl/font_impl.cc', 34 'shared_impl/font_impl.cc',
35 'shared_impl/font_impl.h', 35 'shared_impl/font_impl.h',
36 'shared_impl/function_group_base.cc',
37 'shared_impl/function_group_base.h',
36 'shared_impl/image_data_impl.cc', 38 'shared_impl/image_data_impl.cc',
37 'shared_impl/image_data_impl.h', 39 'shared_impl/image_data_impl.h',
38 'shared_impl/ppapi_preferences.cc', 40 'shared_impl/ppapi_preferences.cc',
39 'shared_impl/ppapi_preferences.h', 41 'shared_impl/ppapi_preferences.h',
42 'shared_impl/resource_object_base.cc',
43 'shared_impl/resource_object_base.h',
40 'shared_impl/tracker_base.cc', 44 'shared_impl/tracker_base.cc',
41 'shared_impl/tracker_base.h', 45 'shared_impl/tracker_base.h',
42 'shared_impl/url_util_impl.cc', 46 'shared_impl/url_util_impl.cc',
43 'shared_impl/url_util_impl.h', 47 'shared_impl/url_util_impl.h',
44 'shared_impl/webkit_forwarding.cc', 48 'shared_impl/webkit_forwarding.cc',
45 'shared_impl/webkit_forwarding.h', 49 'shared_impl/webkit_forwarding.h',
46 50
47 'thunk/enter.h', 51 'thunk/enter.h',
48 'thunk/ppb_audio_api.h', 52 'thunk/ppb_audio_api.h',
49 'thunk/ppb_audio_config_api.h', 53 'thunk/ppb_audio_config_api.h',
50 'thunk/ppb_audio_config_thunk.cc', 54 'thunk/ppb_audio_config_thunk.cc',
51 'thunk/ppb_audio_thunk.cc', 55 'thunk/ppb_audio_thunk.cc',
52 'thunk/ppb_audio_trusted_api.h', 56 'thunk/ppb_audio_trusted_api.h',
53 'thunk/ppb_audio_trusted_thunk.cc', 57 'thunk/ppb_audio_trusted_thunk.cc',
54 'thunk/ppb_broker_api.h', 58 'thunk/ppb_broker_api.h',
55 'thunk/ppb_broker_thunk.cc', 59 'thunk/ppb_broker_thunk.cc',
56 'thunk/ppb_buffer_api.h', 60 'thunk/ppb_buffer_api.h',
57 'thunk/ppb_buffer_thunk.cc', 61 'thunk/ppb_buffer_thunk.cc',
58 'thunk/ppb_char_set_api.h', 62 'thunk/ppb_char_set_api.h',
59 'thunk/ppb_char_set_thunk.cc', 63 'thunk/ppb_char_set_thunk.cc',
60 'thunk/ppb_cursor_control_api.h', 64 'thunk/ppb_cursor_control_api.h',
61 'thunk/ppb_cursor_control_thunk.cc', 65 'thunk/ppb_cursor_control_thunk.cc',
66 'thunk/ppb_directory_reader_api.h',
67 'thunk/ppb_directory_reader_thunk.cc',
68 'thunk/ppb_file_chooser_api.h',
69 'thunk/ppb_file_chooser_thunk.cc',
70 'thunk/ppb_file_io_api.h',
71 'thunk/ppb_file_io_thunk.cc',
72 'thunk/ppb_file_io_trusted_thunk.cc',
73 'thunk/ppb_file_ref_api.h',
74 'thunk/ppb_file_ref_thunk.cc',
75 'thunk/ppb_file_system_api.h',
76 'thunk/ppb_file_system_thunk.cc',
77 'thunk/ppb_find_api.h',
78 'thunk/ppb_find_thunk.cc',
62 'thunk/ppb_font_api.h', 79 'thunk/ppb_font_api.h',
63 'thunk/ppb_font_thunk.cc', 80 'thunk/ppb_font_thunk.cc',
64 'thunk/ppb_graphics_2d_api.h', 81 'thunk/ppb_graphics_2d_api.h',
65 'thunk/ppb_graphics_2d_thunk.cc', 82 'thunk/ppb_graphics_2d_thunk.cc',
66 'thunk/ppb_image_data_api.h', 83 'thunk/ppb_image_data_api.h',
67 'thunk/ppb_image_data_thunk.cc', 84 'thunk/ppb_image_data_thunk.cc',
68 'thunk/thunk.h', 85 'thunk/thunk.h',
69 ], 86 ],
70 'conditions': [ 87 'conditions': [
71 ['OS=="win"', { 88 ['OS=="win"', {
72 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', 89 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
73 }], 90 }],
74 ], 91 ],
75 }, 92 },
76 ], 93 ],
77 } 94 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/enter_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698