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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 10565012: Revert 142482 - Add untrusted NaCl build for PPAPI proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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/ppapi_proxy_untrusted.gypi ('k') | ppapi/ppapi_shared_untrusted.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../..', 9 'webkit_src_dir': '../../../..',
10 },{ 10 },{
11 'webkit_src_dir': '../third_party/WebKit', 11 'webkit_src_dir': '../third_party/WebKit',
12 }], 12 }],
13 ], 13 ],
14 },
15 'target_defaults': {
16 'variables': {
17 'ppapi_shared_target': 0,
18 }, 14 },
19 'target_conditions': [ 15 'targets': [
20 # This part is shared between the targets defined below. 16 {
21 ['ppapi_shared_target==1', { 17 'target_name': 'ppapi_shared',
22 'sources': [ 18 'type': '<(component)',
23 'shared_impl/array_writer.cc', 19 'dependencies': [
24 'shared_impl/array_writer.h', 20 'ppapi.gyp:ppapi_c',
25 'shared_impl/callback_tracker.cc', 21 '../base/base.gyp:base',
26 'shared_impl/callback_tracker.h', 22 '../base/base.gyp:base_i18n',
27 'shared_impl/file_path.cc', 23 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
28 'shared_impl/file_path.h', 24 '../build/temp_gyp/googleurl.gyp:googleurl',
29 'shared_impl/file_type_conversion.cc', 25 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
30 'shared_impl/file_type_conversion.h', 26 '../gpu/gpu.gyp:command_buffer_client',
31 'shared_impl/host_resource.h', 27 '../gpu/gpu.gyp:gles2_implementation',
32 'shared_impl/id_assignment.cc', 28 '../net/net.gyp:net',
33 'shared_impl/id_assignment.h', 29 '../skia/skia.gyp:skia',
34 'shared_impl/platform_file.cc', 30 '../third_party/icu/icu.gyp:icuuc',
35 'shared_impl/platform_file.h', 31 # TODO(ananta) : The WebKit dependency needs to move to a new target for NACL.
36 'shared_impl/ppapi_globals.cc', 32 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
37 'shared_impl/ppapi_globals.h', 33 '../ui/surface/surface.gyp:surface',
38 'shared_impl/ppapi_preferences.cc', 34 ],
39 'shared_impl/ppapi_preferences.h', 35 'defines': [
40 'shared_impl/ppb_audio_config_shared.cc', 36 'PPAPI_SHARED_IMPLEMENTATION',
41 'shared_impl/ppb_audio_config_shared.h', 37 'PPAPI_THUNK_IMPLEMENTATION',
42 'shared_impl/ppb_audio_input_shared.cc', 38 ],
43 'shared_impl/ppb_audio_input_shared.h', 39 'include_dirs': [
44 'shared_impl/ppb_audio_shared.cc', 40 '..',
45 'shared_impl/ppb_audio_shared.h', 41 ],
46 'shared_impl/ppb_crypto_shared.cc', 42 'export_dependent_settings': [
47 'shared_impl/ppb_device_ref_shared.cc', 43 '../base/base.gyp:base',
48 'shared_impl/ppb_device_ref_shared.h', 44 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
49 'shared_impl/ppb_file_io_shared.cc', 45 ],
50 'shared_impl/ppb_file_io_shared.h', 46 'conditions': [
51 'shared_impl/ppb_file_ref_shared.cc', 47 ['OS=="mac"', {
52 'shared_impl/ppb_file_ref_shared.h', 48 'link_settings': {
53 'shared_impl/ppb_flash_shared.cc', 49 'libraries': [
54 'shared_impl/ppb_flash_shared.h', 50 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
55 'shared_impl/ppb_graphics_3d_shared.cc', 51 ],
56 'shared_impl/ppb_graphics_3d_shared.h', 52 },
57 'shared_impl/ppb_image_data_shared.cc', 53 }],
58 'shared_impl/ppb_image_data_shared.h', 54 ],
59 'shared_impl/ppb_input_event_shared.cc', 55 'sources': [
60 'shared_impl/ppb_input_event_shared.h', 56 'shared_impl/array_writer.cc',
61 'shared_impl/ppb_instance_shared.cc', 57 'shared_impl/array_writer.h',
62 'shared_impl/ppb_instance_shared.h', 58 'shared_impl/callback_tracker.cc',
63 'shared_impl/ppb_memory_shared.cc', 59 'shared_impl/callback_tracker.h',
64 'shared_impl/ppb_network_list_private_shared.cc', 60 'shared_impl/file_path.cc',
65 'shared_impl/ppb_network_list_private_shared.h', 61 'shared_impl/file_path.h',
66 'shared_impl/ppb_opengles2_shared.cc', 62 'shared_impl/file_type_conversion.cc',
67 'shared_impl/ppb_opengles2_shared.h', 63 'shared_impl/file_type_conversion.h',
68 'shared_impl/ppb_resource_array_shared.cc', 64 'shared_impl/host_resource.h',
69 'shared_impl/ppb_resource_array_shared.h', 65 'shared_impl/id_assignment.cc',
70 'shared_impl/ppb_url_request_info_shared.cc', 66 'shared_impl/id_assignment.h',
71 'shared_impl/ppb_url_request_info_shared.h', 67 'shared_impl/platform_file.cc',
72 'shared_impl/ppb_url_util_shared.cc', 68 'shared_impl/platform_file.h',
73 'shared_impl/ppb_url_util_shared.h', 69 'shared_impl/ppapi_globals.cc',
74 'shared_impl/ppb_var_shared.cc', 70 'shared_impl/ppapi_globals.h',
75 'shared_impl/ppb_var_shared.h', 71 'shared_impl/ppapi_preferences.cc',
76 'shared_impl/ppb_video_decoder_shared.cc', 72 'shared_impl/ppapi_preferences.h',
77 'shared_impl/ppb_video_decoder_shared.h', 73 'shared_impl/ppb_audio_config_shared.cc',
78 'shared_impl/ppb_video_capture_shared.cc', 74 'shared_impl/ppb_audio_config_shared.h',
79 'shared_impl/ppb_video_capture_shared.h', 75 'shared_impl/ppb_audio_input_shared.cc',
80 'shared_impl/ppb_view_shared.cc', 76 'shared_impl/ppb_audio_input_shared.h',
81 'shared_impl/ppb_view_shared.h', 77 'shared_impl/ppb_audio_shared.cc',
82 'shared_impl/ppp_flash_browser_operations_shared.h', 78 'shared_impl/ppb_audio_shared.h',
83 'shared_impl/ppp_instance_combined.cc', 79 'shared_impl/ppb_crypto_shared.cc',
84 'shared_impl/ppp_instance_combined.h', 80 'shared_impl/ppb_device_ref_shared.cc',
85 'shared_impl/proxy_lock.cc', 81 'shared_impl/ppb_device_ref_shared.h',
86 'shared_impl/proxy_lock.h', 82 'shared_impl/ppb_file_io_shared.cc',
87 'shared_impl/resource.cc', 83 'shared_impl/ppb_file_io_shared.h',
88 'shared_impl/resource.h', 84 'shared_impl/ppb_file_ref_shared.cc',
89 'shared_impl/resource_tracker.cc', 85 'shared_impl/ppb_file_ref_shared.h',
90 'shared_impl/resource_tracker.h', 86 'shared_impl/ppb_flash_shared.cc',
91 'shared_impl/scoped_pp_resource.cc', 87 'shared_impl/ppb_flash_shared.h',
92 'shared_impl/scoped_pp_resource.h', 88 'shared_impl/ppb_graphics_3d_shared.cc',
93 'shared_impl/time_conversion.cc', 89 'shared_impl/ppb_graphics_3d_shared.h',
94 'shared_impl/time_conversion.h', 90 'shared_impl/ppb_image_data_shared.cc',
95 'shared_impl/tracked_callback.cc', 91 'shared_impl/ppb_image_data_shared.h',
96 'shared_impl/tracked_callback.h', 92 'shared_impl/ppb_input_event_shared.cc',
97 'shared_impl/var.cc', 93 'shared_impl/ppb_input_event_shared.h',
98 'shared_impl/var.h', 94 'shared_impl/ppb_instance_shared.cc',
99 'shared_impl/var_tracker.cc', 95 'shared_impl/ppb_instance_shared.h',
100 'shared_impl/var_tracker.h', 96 'shared_impl/ppb_memory_shared.cc',
101 # TODO(viettrungluu): Split these out; it won't be used in NaCl. 97 'shared_impl/ppb_network_list_private_shared.cc',
102 'shared_impl/private/net_address_private_impl.cc', 98 'shared_impl/ppb_network_list_private_shared.h',
103 'shared_impl/private/net_address_private_impl.h', 99 'shared_impl/ppb_opengles2_shared.cc',
100 'shared_impl/ppb_opengles2_shared.h',
101 'shared_impl/ppb_resource_array_shared.cc',
102 'shared_impl/ppb_resource_array_shared.h',
103 'shared_impl/ppb_url_request_info_shared.cc',
104 'shared_impl/ppb_url_request_info_shared.h',
105 'shared_impl/ppb_url_util_shared.cc',
106 'shared_impl/ppb_url_util_shared.h',
107 'shared_impl/ppb_var_shared.cc',
108 'shared_impl/ppb_var_shared.h',
109 'shared_impl/ppb_video_decoder_shared.cc',
110 'shared_impl/ppb_video_decoder_shared.h',
111 'shared_impl/ppb_video_capture_shared.cc',
112 'shared_impl/ppb_video_capture_shared.h',
113 'shared_impl/ppb_view_shared.cc',
114 'shared_impl/ppb_view_shared.h',
115 'shared_impl/ppp_flash_browser_operations_shared.h',
116 'shared_impl/ppp_instance_combined.cc',
117 'shared_impl/ppp_instance_combined.h',
118 'shared_impl/proxy_lock.cc',
119 'shared_impl/proxy_lock.h',
120 'shared_impl/resource.cc',
121 'shared_impl/resource.h',
122 'shared_impl/resource_tracker.cc',
123 'shared_impl/resource_tracker.h',
124 'shared_impl/scoped_pp_resource.cc',
125 'shared_impl/scoped_pp_resource.h',
126 'shared_impl/time_conversion.cc',
127 'shared_impl/time_conversion.h',
128 'shared_impl/tracked_callback.cc',
129 'shared_impl/tracked_callback.h',
130 'shared_impl/var.cc',
131 'shared_impl/var.h',
132 'shared_impl/var_tracker.cc',
133 'shared_impl/var_tracker.h',
134 # TODO(viettrungluu): Split these out; it won't be used in NaCl.
135 'shared_impl/private/net_address_private_impl.cc',
136 'shared_impl/private/net_address_private_impl.h',
104 137
105 'shared_impl/private/ppb_browser_font_trusted_shared.cc', 138 'shared_impl/private/ppb_browser_font_trusted_shared.cc',
106 'shared_impl/private/ppb_browser_font_trusted_shared.h', 139 'shared_impl/private/ppb_browser_font_trusted_shared.h',
107 'shared_impl/private/ppb_char_set_shared.cc', 140 'shared_impl/private/ppb_char_set_shared.cc',
108 'shared_impl/private/ppb_char_set_shared.h', 141 'shared_impl/private/ppb_char_set_shared.h',
109 'shared_impl/private/ppb_host_resolver_shared.cc', 142 'shared_impl/private/ppb_host_resolver_shared.cc',
110 'shared_impl/private/ppb_host_resolver_shared.h', 143 'shared_impl/private/ppb_host_resolver_shared.h',
111 'shared_impl/private/ppb_tcp_server_socket_shared.cc', 144 'shared_impl/private/ppb_tcp_server_socket_shared.cc',
112 'shared_impl/private/ppb_tcp_server_socket_shared.h', 145 'shared_impl/private/ppb_tcp_server_socket_shared.h',
113 'shared_impl/private/ppb_x509_certificate_private_shared.cc', 146 'shared_impl/private/ppb_x509_certificate_private_shared.cc',
114 'shared_impl/private/ppb_x509_certificate_private_shared.h', 147 'shared_impl/private/ppb_x509_certificate_private_shared.h',
115 'shared_impl/private/tcp_socket_private_impl.cc', 148 'shared_impl/private/tcp_socket_private_impl.cc',
116 'shared_impl/private/tcp_socket_private_impl.h', 149 'shared_impl/private/tcp_socket_private_impl.h',
117 'shared_impl/private/udp_socket_private_impl.cc', 150 'shared_impl/private/udp_socket_private_impl.cc',
118 'shared_impl/private/udp_socket_private_impl.h', 151 'shared_impl/private/udp_socket_private_impl.h',
119 152
120 'thunk/enter.cc', 153 'thunk/enter.cc',
121 'thunk/enter.h', 154 'thunk/enter.h',
122 'thunk/ppb_audio_api.h', 155 'thunk/ppb_audio_api.h',
123 'thunk/ppb_audio_config_api.h', 156 'thunk/ppb_audio_config_api.h',
124 'thunk/ppb_audio_config_thunk.cc', 157 'thunk/ppb_audio_config_thunk.cc',
125 'thunk/ppb_audio_input_api.h', 158 'thunk/ppb_audio_input_api.h',
126 'thunk/ppb_audio_input_thunk.cc', 159 'thunk/ppb_audio_input_thunk.cc',
127 'thunk/ppb_audio_input_trusted_thunk.cc', 160 'thunk/ppb_audio_input_trusted_thunk.cc',
128 'thunk/ppb_audio_thunk.cc', 161 'thunk/ppb_audio_thunk.cc',
129 'thunk/ppb_audio_trusted_thunk.cc', 162 'thunk/ppb_audio_trusted_thunk.cc',
130 'thunk/ppb_broker_api.h', 163 'thunk/ppb_broker_api.h',
131 'thunk/ppb_broker_thunk.cc', 164 'thunk/ppb_broker_thunk.cc',
132 'thunk/ppb_browser_font_trusted_api.h', 165 'thunk/ppb_browser_font_trusted_api.h',
133 'thunk/ppb_browser_font_trusted_thunk.cc', 166 'thunk/ppb_browser_font_trusted_thunk.cc',
134 'thunk/ppb_buffer_api.h', 167 'thunk/ppb_buffer_api.h',
135 'thunk/ppb_buffer_thunk.cc', 168 'thunk/ppb_buffer_thunk.cc',
136 'thunk/ppb_buffer_trusted_api.h', 169 'thunk/ppb_buffer_trusted_api.h',
137 'thunk/ppb_buffer_trusted_thunk.cc', 170 'thunk/ppb_buffer_trusted_thunk.cc',
138 'thunk/ppb_char_set_thunk.cc', 171 'thunk/ppb_char_set_thunk.cc',
139 'thunk/ppb_console_thunk.cc', 172 'thunk/ppb_console_thunk.cc',
140 'thunk/ppb_cursor_control_thunk.cc', 173 'thunk/ppb_cursor_control_thunk.cc',
141 'thunk/ppb_device_ref_api.h', 174 'thunk/ppb_device_ref_api.h',
142 'thunk/ppb_device_ref_thunk.cc', 175 'thunk/ppb_device_ref_thunk.cc',
143 'thunk/ppb_directory_reader_api.h', 176 'thunk/ppb_directory_reader_api.h',
144 'thunk/ppb_directory_reader_thunk.cc', 177 'thunk/ppb_directory_reader_thunk.cc',
145 'thunk/ppb_file_chooser_api.h', 178 'thunk/ppb_file_chooser_api.h',
146 'thunk/ppb_file_chooser_thunk.cc', 179 'thunk/ppb_file_chooser_thunk.cc',
147 'thunk/ppb_file_io_api.h', 180 'thunk/ppb_file_io_api.h',
148 'thunk/ppb_file_io_thunk.cc', 181 'thunk/ppb_file_io_thunk.cc',
149 'thunk/ppb_file_io_trusted_thunk.cc', 182 'thunk/ppb_file_io_trusted_thunk.cc',
150 'thunk/ppb_file_ref_api.h', 183 'thunk/ppb_file_ref_api.h',
151 'thunk/ppb_file_ref_thunk.cc', 184 'thunk/ppb_file_ref_thunk.cc',
152 'thunk/ppb_file_system_api.h', 185 'thunk/ppb_file_system_api.h',
153 'thunk/ppb_file_system_thunk.cc', 186 'thunk/ppb_file_system_thunk.cc',
154 'thunk/ppb_find_thunk.cc', 187 'thunk/ppb_find_thunk.cc',
155 'thunk/ppb_flash_api.h', 188 'thunk/ppb_flash_api.h',
156 'thunk/ppb_flash_clipboard_thunk.cc', 189 'thunk/ppb_flash_clipboard_thunk.cc',
157 'thunk/ppb_flash_device_id_api.h', 190 'thunk/ppb_flash_device_id_api.h',
158 'thunk/ppb_flash_device_id_thunk.cc', 191 'thunk/ppb_flash_device_id_thunk.cc',
159 'thunk/ppb_flash_file_fileref_thunk.cc', 192 'thunk/ppb_flash_file_fileref_thunk.cc',
160 'thunk/ppb_flash_file_modulelocal_thunk.cc', 193 'thunk/ppb_flash_file_modulelocal_thunk.cc',
161 'thunk/ppb_flash_fullscreen_thunk.cc', 194 'thunk/ppb_flash_fullscreen_thunk.cc',
162 'thunk/ppb_flash_menu_api.h', 195 'thunk/ppb_flash_menu_api.h',
163 'thunk/ppb_flash_menu_thunk.cc', 196 'thunk/ppb_flash_menu_thunk.cc',
164 'thunk/ppb_flash_message_loop_api.h', 197 'thunk/ppb_flash_message_loop_api.h',
165 'thunk/ppb_flash_message_loop_thunk.cc', 198 'thunk/ppb_flash_message_loop_thunk.cc',
166 'thunk/ppb_flash_thunk.cc', 199 'thunk/ppb_flash_thunk.cc',
167 'thunk/ppb_fullscreen_thunk.cc', 200 'thunk/ppb_fullscreen_thunk.cc',
168 'thunk/ppb_gamepad_thunk.cc', 201 'thunk/ppb_gamepad_thunk.cc',
169 'thunk/ppb_gles_chromium_texture_mapping_thunk.cc', 202 'thunk/ppb_gles_chromium_texture_mapping_thunk.cc',
170 'thunk/ppb_graphics_2d_api.h', 203 'thunk/ppb_graphics_2d_api.h',
171 'thunk/ppb_graphics_2d_thunk.cc', 204 'thunk/ppb_graphics_2d_thunk.cc',
172 'thunk/ppb_graphics_3d_api.h', 205 'thunk/ppb_graphics_3d_api.h',
173 'thunk/ppb_graphics_3d_thunk.cc', 206 'thunk/ppb_graphics_3d_thunk.cc',
174 'thunk/ppb_graphics_3d_trusted_thunk.cc', 207 'thunk/ppb_graphics_3d_trusted_thunk.cc',
175 'thunk/ppb_host_resolver_private_api.h', 208 'thunk/ppb_host_resolver_private_api.h',
176 'thunk/ppb_host_resolver_private_thunk.cc', 209 'thunk/ppb_host_resolver_private_thunk.cc',
177 'thunk/ppb_image_data_api.h', 210 'thunk/ppb_image_data_api.h',
178 'thunk/ppb_image_data_thunk.cc', 211 'thunk/ppb_image_data_thunk.cc',
179 'thunk/ppb_image_data_trusted_thunk.cc', 212 'thunk/ppb_image_data_trusted_thunk.cc',
180 'thunk/ppb_input_event_api.h', 213 'thunk/ppb_input_event_api.h',
181 'thunk/ppb_input_event_thunk.cc', 214 'thunk/ppb_input_event_thunk.cc',
182 'thunk/ppb_instance_api.h', 215 'thunk/ppb_instance_api.h',
183 'thunk/ppb_instance_thunk.cc', 216 'thunk/ppb_instance_thunk.cc',
184 'thunk/ppb_layer_compositor_api.h', 217 'thunk/ppb_layer_compositor_api.h',
185 'thunk/ppb_layer_compositor_thunk.cc', 218 'thunk/ppb_layer_compositor_thunk.cc',
186 'thunk/ppb_message_loop_api.h', 219 'thunk/ppb_message_loop_api.h',
187 'thunk/ppb_messaging_thunk.cc', 220 'thunk/ppb_messaging_thunk.cc',
188 'thunk/ppb_mouse_cursor_thunk.cc', 221 'thunk/ppb_mouse_cursor_thunk.cc',
189 'thunk/ppb_mouse_lock_thunk.cc', 222 'thunk/ppb_mouse_lock_thunk.cc',
190 'thunk/ppb_network_list_private_api.h', 223 'thunk/ppb_network_list_private_api.h',
191 'thunk/ppb_network_list_private_thunk.cc', 224 'thunk/ppb_network_list_private_thunk.cc',
192 'thunk/ppb_network_monitor_private_api.h', 225 'thunk/ppb_network_monitor_private_api.h',
193 'thunk/ppb_network_monitor_private_thunk.cc', 226 'thunk/ppb_network_monitor_private_thunk.cc',
194 'thunk/ppb_pdf_api.h', 227 'thunk/ppb_pdf_api.h',
195 'thunk/ppb_printing_thunk.cc', 228 'thunk/ppb_printing_thunk.cc',
196 'thunk/ppb_resource_array_api.h', 229 'thunk/ppb_resource_array_api.h',
197 'thunk/ppb_resource_array_thunk.cc', 230 'thunk/ppb_resource_array_thunk.cc',
198 'thunk/ppb_scrollbar_api.h', 231 'thunk/ppb_scrollbar_api.h',
199 'thunk/ppb_scrollbar_thunk.cc', 232 'thunk/ppb_scrollbar_thunk.cc',
200 'thunk/ppb_talk_private_api.h', 233 'thunk/ppb_talk_private_api.h',
201 'thunk/ppb_talk_private_thunk.cc', 234 'thunk/ppb_talk_private_thunk.cc',
202 'thunk/ppb_tcp_server_socket_private_api.h', 235 'thunk/ppb_tcp_server_socket_private_api.h',
203 'thunk/ppb_tcp_server_socket_private_thunk.cc', 236 'thunk/ppb_tcp_server_socket_private_thunk.cc',
204 'thunk/ppb_tcp_socket_private_api.h', 237 'thunk/ppb_tcp_socket_private_api.h',
205 'thunk/ppb_tcp_socket_private_thunk.cc', 238 'thunk/ppb_tcp_socket_private_thunk.cc',
206 'thunk/ppb_text_input_thunk.cc', 239 'thunk/ppb_text_input_thunk.cc',
207 'thunk/ppb_udp_socket_private_api.h', 240 'thunk/ppb_udp_socket_private_api.h',
208 'thunk/ppb_udp_socket_private_thunk.cc', 241 'thunk/ppb_udp_socket_private_thunk.cc',
209 'thunk/ppb_url_loader_api.h', 242 'thunk/ppb_url_loader_api.h',
210 'thunk/ppb_url_loader_thunk.cc', 243 'thunk/ppb_url_loader_thunk.cc',
211 'thunk/ppb_url_request_info_api.h', 244 'thunk/ppb_url_request_info_api.h',
212 'thunk/ppb_url_request_info_thunk.cc', 245 'thunk/ppb_url_request_info_thunk.cc',
213 'thunk/ppb_url_response_info_api.h', 246 'thunk/ppb_url_response_info_api.h',
214 'thunk/ppb_url_response_info_thunk.cc', 247 'thunk/ppb_url_response_info_thunk.cc',
215 'thunk/ppb_url_util_thunk.cc', 248 'thunk/ppb_url_util_thunk.cc',
216 'thunk/ppb_video_capture_api.h', 249 'thunk/ppb_video_capture_api.h',
217 'thunk/ppb_video_capture_thunk.cc', 250 'thunk/ppb_video_capture_thunk.cc',
218 'thunk/ppb_video_decoder_api.h', 251 'thunk/ppb_video_decoder_api.h',
219 'thunk/ppb_video_decoder_thunk.cc', 252 'thunk/ppb_video_decoder_thunk.cc',
220 'thunk/ppb_video_layer_api.h', 253 'thunk/ppb_video_layer_api.h',
221 'thunk/ppb_video_layer_thunk.cc', 254 'thunk/ppb_video_layer_thunk.cc',
222 'thunk/ppb_view_api.h', 255 'thunk/ppb_view_api.h',
223 'thunk/ppb_view_thunk.cc', 256 'thunk/ppb_view_thunk.cc',
224 'thunk/ppb_websocket_api.h', 257 'thunk/ppb_websocket_api.h',
225 'thunk/ppb_websocket_thunk.cc', 258 'thunk/ppb_websocket_thunk.cc',
226 'thunk/ppb_widget_api.h', 259 'thunk/ppb_widget_api.h',
227 'thunk/ppb_widget_thunk.cc', 260 'thunk/ppb_widget_thunk.cc',
228 'thunk/ppb_x509_certificate_private_api.h', 261 'thunk/ppb_x509_certificate_private_api.h',
229 'thunk/ppb_x509_certificate_private_thunk.cc', 262 'thunk/ppb_x509_certificate_private_thunk.cc',
230 'thunk/ppb_zoom_thunk.cc', 263 'thunk/ppb_zoom_thunk.cc',
231 'thunk/thunk.h', 264 'thunk/thunk.h',
232 ], 265 ],
233 'defines': [ 266 },
234 'PPAPI_SHARED_IMPLEMENTATION', 267 ],
235 'PPAPI_THUNK_IMPLEMENTATION',
236 ],
237 'include_dirs': [
238 '..',
239 ],
240 'target_conditions': [
241 ['>(nacl_untrusted_build)==1', {
242 'sources!': [
243 'shared_impl/ppb_audio_input_shared.cc',
244 'shared_impl/ppb_graphics_3d_shared.cc',
245 'shared_impl/ppb_image_data_shared.cc',
246 'shared_impl/ppb_opengles2_shared.cc',
247 'shared_impl/ppb_url_util_shared.cc',
248 'shared_impl/ppb_video_decoder_shared.cc',
249 'shared_impl/ppb_video_capture_shared.cc',
250 'shared_impl/private/net_address_private_impl.cc',
251 'shared_impl/private/ppb_browser_font_trusted_shared.cc',
252 'shared_impl/private/ppb_char_set_shared.cc',
253 'shared_impl/private/ppb_host_resolver_shared.cc',
254 'shared_impl/private/ppb_tcp_server_socket_shared.cc',
255 'shared_impl/private/ppb_x509_certificate_private_shared.cc',
256 'shared_impl/private/tcp_socket_private_impl.cc',
257 'shared_impl/private/udp_socket_private_impl.cc',
258 'thunk/ppb_audio_input_thunk.cc',
259 'thunk/ppb_audio_input_trusted_thunk.cc',
260 'thunk/ppb_audio_trusted_thunk.cc',
261 'thunk/ppb_broker_thunk.cc',
262 'thunk/ppb_browser_font_trusted_thunk.cc',
263 'thunk/ppb_buffer_thunk.cc',
264 'thunk/ppb_buffer_trusted_thunk.cc',
265 'thunk/ppb_char_set_thunk.cc',
266 'thunk/ppb_directory_reader_thunk.cc',
267 'thunk/ppb_file_chooser_thunk.cc',
268 'thunk/ppb_file_io_trusted_thunk.cc',
269 'thunk/ppb_flash_clipboard_thunk.cc',
270 'thunk/ppb_flash_device_id_thunk.cc',
271 'thunk/ppb_flash_file_fileref_thunk.cc',
272 'thunk/ppb_flash_file_modulelocal_thunk.cc',
273 'thunk/ppb_flash_fullscreen_thunk.cc',
274 'thunk/ppb_flash_menu_thunk.cc',
275 'thunk/ppb_flash_message_loop_thunk.cc',
276 'thunk/ppb_flash_thunk.cc',
277 'thunk/ppb_flash_message_loop_thunk.cc',
278 'thunk/ppb_gles_chromium_texture_mapping_thunk.cc',
279 'thunk/ppb_graphics_2d_thunk.cc',
280 'thunk/ppb_graphics_3d_thunk.cc',
281 'thunk/ppb_graphics_3d_trusted_thunk.cc',
282 'thunk/ppb_host_resolver_private_thunk.cc',
283 'thunk/ppb_image_data_trusted_thunk.cc',
284 'thunk/ppb_layer_compositor_thunk.cc',
285 'thunk/ppb_network_list_private_thunk.cc',
286 'thunk/ppb_network_monitor_private_thunk.cc',
287 'thunk/ppb_scrollbar_thunk.cc',
288 'thunk/ppb_talk_private_thunk.cc',
289 'thunk/ppb_tcp_server_socket_private_thunk.cc',
290 'thunk/ppb_tcp_socket_private_thunk.cc',
291 'thunk/ppb_transport_thunk.cc',
292 'thunk/ppb_udp_socket_private_thunk.cc',
293 'thunk/ppb_url_util_thunk.cc',
294 'thunk/ppb_video_capture_thunk.cc',
295 'thunk/ppb_video_decoder_thunk.cc',
296 'thunk/ppb_video_layer_thunk.cc',
297 'thunk/ppb_websocket_thunk.cc',
298 'thunk/ppb_x509_certificate_private_thunk.cc',
299 ],
300 }],
301 ],
302 }],
303 ],
304 },
305 } 268 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy_untrusted.gypi ('k') | ppapi/ppapi_shared_untrusted.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698