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

Side by Side Diff: ppapi/ppapi_shared_proxy.gypi

Issue 6400007: Implement proxy for 3d-related interfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 10 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 | « gpu/ipc/gpu_command_buffer_traits.cc ('k') | ppapi/proxy/DEPS » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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_impl', 8 'target_name': 'ppapi_shared_impl',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 13 matching lines...) Expand all
24 ['OS=="win"', { 24 ['OS=="win"', {
25 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', 25 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
26 }], 26 }],
27 ], 27 ],
28 }, 28 },
29 { 29 {
30 'target_name': 'ppapi_proxy', 30 'target_name': 'ppapi_proxy',
31 'type': 'static_library', 31 'type': 'static_library',
32 'dependencies': [ 32 'dependencies': [
33 '../ipc/ipc.gyp:ipc', 33 '../ipc/ipc.gyp:ipc',
34 '../gpu/gpu.gyp:gpu_ipc',
34 'ppapi_c', 35 'ppapi_c',
35 'ppapi_shared_impl', 36 'ppapi_shared_impl',
36 ], 37 ],
37 'all_dependent_settings': { 38 'all_dependent_settings': {
38 'include_dirs': [ 39 'include_dirs': [
39 '..', 40 '..',
40 ], 41 ],
41 }, 42 },
42 'include_dirs': [ 43 'include_dirs': [
43 '..', 44 '..',
(...skipping 27 matching lines...) Expand all
71 'proxy/ppapi_param_traits.cc', 72 'proxy/ppapi_param_traits.cc',
72 'proxy/ppapi_param_traits.h', 73 'proxy/ppapi_param_traits.h',
73 'proxy/ppb_audio_config_proxy.cc', 74 'proxy/ppb_audio_config_proxy.cc',
74 'proxy/ppb_audio_config_proxy.h', 75 'proxy/ppb_audio_config_proxy.h',
75 'proxy/ppb_audio_proxy.cc', 76 'proxy/ppb_audio_proxy.cc',
76 'proxy/ppb_audio_proxy.h', 77 'proxy/ppb_audio_proxy.h',
77 'proxy/ppb_buffer_proxy.cc', 78 'proxy/ppb_buffer_proxy.cc',
78 'proxy/ppb_buffer_proxy.h', 79 'proxy/ppb_buffer_proxy.h',
79 'proxy/ppb_char_set_proxy.cc', 80 'proxy/ppb_char_set_proxy.cc',
80 'proxy/ppb_char_set_proxy.h', 81 'proxy/ppb_char_set_proxy.h',
82 'proxy/ppb_context_3d_proxy.cc',
83 'proxy/ppb_context_3d_proxy.h',
81 'proxy/ppb_core_proxy.cc', 84 'proxy/ppb_core_proxy.cc',
82 'proxy/ppb_core_proxy.h', 85 'proxy/ppb_core_proxy.h',
83 'proxy/ppb_cursor_control_proxy.cc', 86 'proxy/ppb_cursor_control_proxy.cc',
84 'proxy/ppb_cursor_control_proxy.h', 87 'proxy/ppb_cursor_control_proxy.h',
85 'proxy/ppb_flash_proxy.cc', 88 'proxy/ppb_flash_proxy.cc',
86 'proxy/ppb_flash_proxy.h', 89 'proxy/ppb_flash_proxy.h',
87 'proxy/ppb_font_proxy.cc', 90 'proxy/ppb_font_proxy.cc',
88 'proxy/ppb_font_proxy.h', 91 'proxy/ppb_font_proxy.h',
89 'proxy/ppb_fullscreen_proxy.cc', 92 'proxy/ppb_fullscreen_proxy.cc',
90 'proxy/ppb_fullscreen_proxy.h', 93 'proxy/ppb_fullscreen_proxy.h',
94 'proxy/ppb_gles_chromium_texture_mapping_proxy.cc',
95 'proxy/ppb_gles_chromium_texture_mapping_proxy.h',
91 'proxy/ppb_graphics_2d_proxy.cc', 96 'proxy/ppb_graphics_2d_proxy.cc',
92 'proxy/ppb_graphics_2d_proxy.h', 97 'proxy/ppb_graphics_2d_proxy.h',
93 'proxy/ppb_image_data_proxy.cc', 98 'proxy/ppb_image_data_proxy.cc',
94 'proxy/ppb_image_data_proxy.h', 99 'proxy/ppb_image_data_proxy.h',
95 'proxy/ppb_instance_proxy.cc', 100 'proxy/ppb_instance_proxy.cc',
96 'proxy/ppb_instance_proxy.h', 101 'proxy/ppb_instance_proxy.h',
102 'proxy/ppb_opengles2_proxy.cc',
103 'proxy/ppb_opengles2_proxy.h',
97 'proxy/ppb_pdf_proxy.cc', 104 'proxy/ppb_pdf_proxy.cc',
98 'proxy/ppb_pdf_proxy.h', 105 'proxy/ppb_pdf_proxy.h',
106 'proxy/ppb_surface_3d_proxy.cc',
107 'proxy/ppb_surface_3d_proxy.h',
99 'proxy/ppb_testing_proxy.cc', 108 'proxy/ppb_testing_proxy.cc',
100 'proxy/ppb_testing_proxy.h', 109 'proxy/ppb_testing_proxy.h',
101 'proxy/ppb_url_loader_proxy.cc', 110 'proxy/ppb_url_loader_proxy.cc',
102 'proxy/ppb_url_loader_proxy.h', 111 'proxy/ppb_url_loader_proxy.h',
103 'proxy/ppb_url_request_info_proxy.cc', 112 'proxy/ppb_url_request_info_proxy.cc',
104 'proxy/ppb_url_request_info_proxy.h', 113 'proxy/ppb_url_request_info_proxy.h',
105 'proxy/ppb_url_response_info_proxy.cc', 114 'proxy/ppb_url_response_info_proxy.cc',
106 'proxy/ppb_url_response_info_proxy.h', 115 'proxy/ppb_url_response_info_proxy.h',
107 'proxy/ppb_var_deprecated_proxy.cc', 116 'proxy/ppb_var_deprecated_proxy.cc',
108 'proxy/ppb_var_deprecated_proxy.h', 117 'proxy/ppb_var_deprecated_proxy.h',
(...skipping 13 matching lines...) Expand all
122 ['OS=="win"', { 131 ['OS=="win"', {
123 }], 132 }],
124 ['OS=="linux"', { 133 ['OS=="linux"', {
125 }], 134 }],
126 ['OS=="mac"', { 135 ['OS=="mac"', {
127 }] 136 }]
128 ], 137 ],
129 }, 138 },
130 ], 139 ],
131 } 140 }
OLDNEW
« no previous file with comments | « gpu/ipc/gpu_command_buffer_traits.cc ('k') | ppapi/proxy/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698