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

Side by Side Diff: ppapi/ppapi_proxy.gypi

Issue 11053003: Migrate Graphics2D to new design. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 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
« no previous file with comments | « ppapi/host/resource_host.h ('k') | ppapi/proxy/graphics_2d_resource.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) 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_proxy_target': 0, 8 'ppapi_proxy_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 # This part is shared between the targets defined below. 11 # This part is shared between the targets defined below.
12 ['ppapi_proxy_target==1', { 12 ['ppapi_proxy_target==1', {
13 'sources': [ 13 'sources': [
14 # Take some standalone files from the C++ wrapper allowing us to more 14 # Take some standalone files from the C++ wrapper allowing us to more
15 # easily make async callbacks in the proxy. We can't depend on the 15 # easily make async callbacks in the proxy. We can't depend on the
16 # full C++ wrappers at this layer since the C++ wrappers expect 16 # full C++ wrappers at this layer since the C++ wrappers expect
17 # symbols defining the globals for "being a plugin" which we are not. 17 # symbols defining the globals for "being a plugin" which we are not.
18 # These callback files are standalone. 18 # These callback files are standalone.
19 'cpp/completion_callback.h', 19 'cpp/completion_callback.h',
20 'utility/completion_callback_factory.h', 20 'utility/completion_callback_factory.h',
21 21
22 'proxy/audio_input_resource.cc', 22 'proxy/audio_input_resource.cc',
23 'proxy/audio_input_resource.h', 23 'proxy/audio_input_resource.h',
24 'proxy/broker_dispatcher.cc', 24 'proxy/broker_dispatcher.cc',
25 'proxy/broker_dispatcher.h', 25 'proxy/broker_dispatcher.h',
26 'proxy/connection.h', 26 'proxy/connection.h',
27 'proxy/dispatcher.cc', 27 'proxy/dispatcher.cc',
28 'proxy/dispatcher.h', 28 'proxy/dispatcher.h',
29 'proxy/enter_proxy.h', 29 'proxy/enter_proxy.h',
30 'proxy/graphics_2d_resource.cc',
31 'proxy/graphics_2d_resource.h',
30 'proxy/file_chooser_resource.cc', 32 'proxy/file_chooser_resource.cc',
31 'proxy/file_chooser_resource.h', 33 'proxy/file_chooser_resource.h',
32 'proxy/flash_clipboard_resource.cc', 34 'proxy/flash_clipboard_resource.cc',
33 'proxy/flash_clipboard_resource.h', 35 'proxy/flash_clipboard_resource.h',
34 'proxy/flash_device_id_resource.cc', 36 'proxy/flash_device_id_resource.cc',
35 'proxy/flash_device_id_resource.h', 37 'proxy/flash_device_id_resource.h',
36 'proxy/flash_font_file_resource.cc', 38 'proxy/flash_font_file_resource.cc',
37 'proxy/flash_font_file_resource.h', 39 'proxy/flash_font_file_resource.h',
38 'proxy/flash_menu_resource.cc', 40 'proxy/flash_menu_resource.cc',
39 'proxy/flash_menu_resource.h', 41 'proxy/flash_menu_resource.h',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'proxy/ppb_file_io_proxy.cc', 82 'proxy/ppb_file_io_proxy.cc',
81 'proxy/ppb_file_io_proxy.h', 83 'proxy/ppb_file_io_proxy.h',
82 'proxy/ppb_file_ref_proxy.cc', 84 'proxy/ppb_file_ref_proxy.cc',
83 'proxy/ppb_file_ref_proxy.h', 85 'proxy/ppb_file_ref_proxy.h',
84 'proxy/ppb_file_system_proxy.cc', 86 'proxy/ppb_file_system_proxy.cc',
85 'proxy/ppb_file_system_proxy.h', 87 'proxy/ppb_file_system_proxy.h',
86 'proxy/ppb_flash_proxy.cc', 88 'proxy/ppb_flash_proxy.cc',
87 'proxy/ppb_flash_proxy.h', 89 'proxy/ppb_flash_proxy.h',
88 'proxy/ppb_flash_message_loop_proxy.cc', 90 'proxy/ppb_flash_message_loop_proxy.cc',
89 'proxy/ppb_flash_message_loop_proxy.h', 91 'proxy/ppb_flash_message_loop_proxy.h',
90 'proxy/ppb_graphics_2d_proxy.cc',
91 'proxy/ppb_graphics_2d_proxy.h',
92 'proxy/ppb_graphics_3d_proxy.cc', 92 'proxy/ppb_graphics_3d_proxy.cc',
93 'proxy/ppb_graphics_3d_proxy.h', 93 'proxy/ppb_graphics_3d_proxy.h',
94 'proxy/ppb_host_resolver_private_proxy.cc', 94 'proxy/ppb_host_resolver_private_proxy.cc',
95 'proxy/ppb_host_resolver_private_proxy.h', 95 'proxy/ppb_host_resolver_private_proxy.h',
96 'proxy/ppb_image_data_proxy.cc', 96 'proxy/ppb_image_data_proxy.cc',
97 'proxy/ppb_image_data_proxy.h', 97 'proxy/ppb_image_data_proxy.h',
98 'proxy/ppb_instance_proxy.cc', 98 'proxy/ppb_instance_proxy.cc',
99 'proxy/ppb_instance_proxy.h', 99 'proxy/ppb_instance_proxy.h',
100 'proxy/ppb_message_loop_proxy.cc', 100 'proxy/ppb_message_loop_proxy.cc',
101 'proxy/ppb_message_loop_proxy.h', 101 'proxy/ppb_message_loop_proxy.h',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 'proxy/ppp_video_decoder_proxy.cc', 196 'proxy/ppp_video_decoder_proxy.cc',
197 'proxy/serialized_flash_menu.cc', 197 'proxy/serialized_flash_menu.cc',
198 'proxy/video_capture_resource.cc', 198 'proxy/video_capture_resource.cc',
199 ], 199 ],
200 }], 200 }],
201 ], 201 ],
202 }], 202 }],
203 ], 203 ],
204 }, 204 },
205 } 205 }
OLDNEW
« no previous file with comments | « ppapi/host/resource_host.h ('k') | ppapi/proxy/graphics_2d_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698