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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 22923014: TCPSockets are switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 7 years, 4 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'shared_impl/resource.cc', 92 'shared_impl/resource.cc',
93 'shared_impl/resource.h', 93 'shared_impl/resource.h',
94 'shared_impl/resource_tracker.cc', 94 'shared_impl/resource_tracker.cc',
95 'shared_impl/resource_tracker.h', 95 'shared_impl/resource_tracker.h',
96 'shared_impl/scoped_pp_resource.cc', 96 'shared_impl/scoped_pp_resource.cc',
97 'shared_impl/scoped_pp_resource.h', 97 'shared_impl/scoped_pp_resource.h',
98 'shared_impl/scoped_pp_var.cc', 98 'shared_impl/scoped_pp_var.cc',
99 'shared_impl/scoped_pp_var.h', 99 'shared_impl/scoped_pp_var.h',
100 'shared_impl/socket_option_data.cc', 100 'shared_impl/socket_option_data.cc',
101 'shared_impl/socket_option_data.h', 101 'shared_impl/socket_option_data.h',
102 'shared_impl/tcp_socket_shared.cc',
103 'shared_impl/tcp_socket_shared.h',
104 'shared_impl/thread_aware_callback.cc', 102 'shared_impl/thread_aware_callback.cc',
105 'shared_impl/thread_aware_callback.h', 103 'shared_impl/thread_aware_callback.h',
106 'shared_impl/time_conversion.cc', 104 'shared_impl/time_conversion.cc',
107 'shared_impl/time_conversion.h', 105 'shared_impl/time_conversion.h',
108 'shared_impl/tracked_callback.cc', 106 'shared_impl/tracked_callback.cc',
109 'shared_impl/tracked_callback.h', 107 'shared_impl/tracked_callback.h',
110 'shared_impl/url_request_info_data.cc', 108 'shared_impl/url_request_info_data.cc',
111 'shared_impl/url_request_info_data.h', 109 'shared_impl/url_request_info_data.h',
112 'shared_impl/url_response_info_data.cc', 110 'shared_impl/url_response_info_data.cc',
113 'shared_impl/url_response_info_data.h', 111 'shared_impl/url_response_info_data.h',
114 'shared_impl/var.cc', 112 'shared_impl/var.cc',
115 'shared_impl/var.h', 113 'shared_impl/var.h',
116 'shared_impl/var_tracker.cc', 114 'shared_impl/var_tracker.cc',
117 'shared_impl/var_tracker.h', 115 'shared_impl/var_tracker.h',
118 'shared_impl/var_value_conversions.cc', 116 'shared_impl/var_value_conversions.cc',
119 'shared_impl/var_value_conversions.h', 117 'shared_impl/var_value_conversions.h',
120 # TODO(viettrungluu): Split these out; it won't be used in NaCl. 118 # TODO(viettrungluu): Split these out; it won't be used in NaCl.
121 'shared_impl/private/net_address_private_impl.cc', 119 'shared_impl/private/net_address_private_impl.cc',
122 'shared_impl/private/net_address_private_impl_constants.cc', 120 'shared_impl/private/net_address_private_impl_constants.cc',
123 'shared_impl/private/net_address_private_impl.h', 121 'shared_impl/private/net_address_private_impl.h',
124 122
125 'shared_impl/private/ppb_char_set_shared.cc', 123 'shared_impl/private/ppb_char_set_shared.cc',
126 'shared_impl/private/ppb_char_set_shared.h', 124 'shared_impl/private/ppb_char_set_shared.h',
127 'shared_impl/private/ppb_x509_certificate_private_shared.cc', 125 'shared_impl/private/ppb_x509_certificate_private_shared.cc',
128 'shared_impl/private/ppb_x509_certificate_private_shared.h', 126 'shared_impl/private/ppb_x509_certificate_private_shared.h',
129 'shared_impl/private/tcp_socket_private_impl.cc',
130 'shared_impl/private/tcp_socket_private_impl.h',
131 127
132 'thunk/enter.cc', 128 'thunk/enter.cc',
133 'thunk/enter.h', 129 'thunk/enter.h',
134 'thunk/extensions_common_api.h', 130 'thunk/extensions_common_api.h',
135 'thunk/ppb_audio_api.h', 131 'thunk/ppb_audio_api.h',
136 'thunk/ppb_audio_config_api.h', 132 'thunk/ppb_audio_config_api.h',
137 'thunk/ppb_audio_config_thunk.cc', 133 'thunk/ppb_audio_config_thunk.cc',
138 'thunk/ppb_audio_input_api.h', 134 'thunk/ppb_audio_input_api.h',
139 'thunk/ppb_audio_input_dev_thunk.cc', 135 'thunk/ppb_audio_input_dev_thunk.cc',
140 'thunk/ppb_audio_thunk.cc', 136 'thunk/ppb_audio_thunk.cc',
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 }], 312 }],
317 # We exclude a few more things for nacl_win64, to avoid pulling in 313 # We exclude a few more things for nacl_win64, to avoid pulling in
318 # more dependencies. 314 # more dependencies.
319 ['>(nacl_win64_target)==1', { 315 ['>(nacl_win64_target)==1', {
320 'sources!': [ 316 'sources!': [
321 'shared_impl/ppb_audio_shared.cc', 317 'shared_impl/ppb_audio_shared.cc',
322 'shared_impl/ppb_graphics_3d_shared.cc', 318 'shared_impl/ppb_graphics_3d_shared.cc',
323 'shared_impl/ppb_opengles2_shared.cc', 319 'shared_impl/ppb_opengles2_shared.cc',
324 'shared_impl/private/ppb_host_resolver_shared.cc', 320 'shared_impl/private/ppb_host_resolver_shared.cc',
325 'shared_impl/private/net_address_private_impl.cc', 321 'shared_impl/private/net_address_private_impl.cc',
326 'shared_impl/private/tcp_socket_private_impl.cc',
327 'shared_impl/private/udp_socket_private_impl.cc',
328 'thunk/ppb_graphics_3d_thunk.cc', 322 'thunk/ppb_graphics_3d_thunk.cc',
329 'thunk/ppb_host_resolver_private_thunk.cc', 323 'thunk/ppb_host_resolver_private_thunk.cc',
330 'thunk/ppb_network_list_private_thunk.cc', 324 'thunk/ppb_network_list_private_thunk.cc',
331 'thunk/ppb_network_monitor_private_thunk.cc', 325 'thunk/ppb_network_monitor_private_thunk.cc',
332 'thunk/ppb_tcp_server_socket_private_thunk.cc', 326 'thunk/ppb_tcp_server_socket_private_thunk.cc',
333 'thunk/ppb_tcp_socket_private_thunk.cc', 327 'thunk/ppb_tcp_socket_private_thunk.cc',
334 'thunk/ppb_udp_socket_private_thunk.cc', 328 'thunk/ppb_udp_socket_private_thunk.cc',
335 'thunk/ppb_x509_certificate_private_thunk.cc', 329 'thunk/ppb_x509_certificate_private_thunk.cc',
336 ], 330 ],
337 }], 331 }],
338 ], 332 ],
339 }], 333 }],
340 ], 334 ],
341 }, 335 },
342 } 336 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/DEPS » ('j') | ppapi/proxy/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698