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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 16335018: Add NaCl proxies for Pepper Video Source and Destination resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Create "NaCl style" image data on host side. Created 7 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
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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'ppapi_shared_target': 0, 8 'ppapi_shared_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 'thunk/ppb_flash_thunk.cc', 290 'thunk/ppb_flash_thunk.cc',
291 'thunk/ppb_flash_message_loop_thunk.cc', 291 'thunk/ppb_flash_message_loop_thunk.cc',
292 'thunk/ppb_gles_chromium_texture_mapping_thunk.cc', 292 'thunk/ppb_gles_chromium_texture_mapping_thunk.cc',
293 'thunk/ppb_pdf_thunk.cc', 293 'thunk/ppb_pdf_thunk.cc',
294 'thunk/ppb_scrollbar_thunk.cc', 294 'thunk/ppb_scrollbar_thunk.cc',
295 'thunk/ppb_talk_private_thunk.cc', 295 'thunk/ppb_talk_private_thunk.cc',
296 'thunk/ppb_transport_thunk.cc', 296 'thunk/ppb_transport_thunk.cc',
297 'thunk/ppb_url_util_thunk.cc', 297 'thunk/ppb_url_util_thunk.cc',
298 'thunk/ppb_video_capture_thunk.cc', 298 'thunk/ppb_video_capture_thunk.cc',
299 'thunk/ppb_video_decoder_thunk.cc', 299 'thunk/ppb_video_decoder_thunk.cc',
300 'thunk/ppb_video_destination_private_thunk.cc',
301 'thunk/ppb_video_source_private_thunk.cc',
302 ], 300 ],
303 }], 301 }],
304 # We exclude a few more things for nacl_win64, to avoid pulling in 302 # We exclude a few more things for nacl_win64, to avoid pulling in
305 # more dependencies. 303 # more dependencies.
306 ['>(nacl_win64_target)==1', { 304 ['>(nacl_win64_target)==1', {
307 'sources!': [ 305 'sources!': [
308 'shared_impl/ppb_audio_shared.cc', 306 'shared_impl/ppb_audio_shared.cc',
309 'shared_impl/ppb_graphics_3d_shared.cc', 307 'shared_impl/ppb_graphics_3d_shared.cc',
310 'shared_impl/ppb_opengles2_shared.cc', 308 'shared_impl/ppb_opengles2_shared.cc',
311 'shared_impl/private/ppb_host_resolver_shared.cc', 309 'shared_impl/private/ppb_host_resolver_shared.cc',
312 'shared_impl/private/net_address_private_impl.cc', 310 'shared_impl/private/net_address_private_impl.cc',
313 'shared_impl/private/ppb_tcp_server_socket_shared.cc', 311 'shared_impl/private/ppb_tcp_server_socket_shared.cc',
314 'shared_impl/private/tcp_socket_private_impl.cc', 312 'shared_impl/private/tcp_socket_private_impl.cc',
315 'shared_impl/private/udp_socket_private_impl.cc', 313 'shared_impl/private/udp_socket_private_impl.cc',
316 'thunk/ppb_graphics_3d_thunk.cc', 314 'thunk/ppb_graphics_3d_thunk.cc',
317 'thunk/ppb_host_resolver_private_thunk.cc', 315 'thunk/ppb_host_resolver_private_thunk.cc',
318 'thunk/ppb_network_list_private_thunk.cc', 316 'thunk/ppb_network_list_private_thunk.cc',
319 'thunk/ppb_network_monitor_private_thunk.cc', 317 'thunk/ppb_network_monitor_private_thunk.cc',
320 'thunk/ppb_tcp_server_socket_private_thunk.cc', 318 'thunk/ppb_tcp_server_socket_private_thunk.cc',
321 'thunk/ppb_tcp_socket_private_thunk.cc', 319 'thunk/ppb_tcp_socket_private_thunk.cc',
322 'thunk/ppb_udp_socket_private_thunk.cc', 320 'thunk/ppb_udp_socket_private_thunk.cc',
323 'thunk/ppb_x509_certificate_private_thunk.cc', 321 'thunk/ppb_x509_certificate_private_thunk.cc',
324 ], 322 ],
325 }], 323 }],
326 ], 324 ],
327 }], 325 }],
328 ], 326 ],
329 }, 327 },
330 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698