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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 19005006: Switched proxy for TCPServerSocketPrivate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync, 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
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('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_shared_target': 0, 8 'ppapi_shared_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'shared_impl/var_tracker.h', 117 'shared_impl/var_tracker.h',
118 'shared_impl/var_value_conversions.cc', 118 'shared_impl/var_value_conversions.cc',
119 'shared_impl/var_value_conversions.h', 119 'shared_impl/var_value_conversions.h',
120 # TODO(viettrungluu): Split these out; it won't be used in NaCl. 120 # TODO(viettrungluu): Split these out; it won't be used in NaCl.
121 'shared_impl/private/net_address_private_impl.cc', 121 'shared_impl/private/net_address_private_impl.cc',
122 'shared_impl/private/net_address_private_impl_constants.cc', 122 'shared_impl/private/net_address_private_impl_constants.cc',
123 'shared_impl/private/net_address_private_impl.h', 123 'shared_impl/private/net_address_private_impl.h',
124 124
125 'shared_impl/private/ppb_char_set_shared.cc', 125 'shared_impl/private/ppb_char_set_shared.cc',
126 'shared_impl/private/ppb_char_set_shared.h', 126 'shared_impl/private/ppb_char_set_shared.h',
127 'shared_impl/private/ppb_tcp_server_socket_shared.cc',
128 'shared_impl/private/ppb_tcp_server_socket_shared.h',
129 'shared_impl/private/ppb_x509_certificate_private_shared.cc', 127 'shared_impl/private/ppb_x509_certificate_private_shared.cc',
130 'shared_impl/private/ppb_x509_certificate_private_shared.h', 128 'shared_impl/private/ppb_x509_certificate_private_shared.h',
131 'shared_impl/private/tcp_socket_private_impl.cc', 129 'shared_impl/private/tcp_socket_private_impl.cc',
132 'shared_impl/private/tcp_socket_private_impl.h', 130 'shared_impl/private/tcp_socket_private_impl.h',
133 131
134 'thunk/enter.cc', 132 'thunk/enter.cc',
135 'thunk/enter.h', 133 'thunk/enter.h',
136 'thunk/extensions_common_api.h', 134 'thunk/extensions_common_api.h',
137 'thunk/ppb_audio_api.h', 135 'thunk/ppb_audio_api.h',
138 'thunk/ppb_audio_config_api.h', 136 'thunk/ppb_audio_config_api.h',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 }], 316 }],
319 # We exclude a few more things for nacl_win64, to avoid pulling in 317 # We exclude a few more things for nacl_win64, to avoid pulling in
320 # more dependencies. 318 # more dependencies.
321 ['>(nacl_win64_target)==1', { 319 ['>(nacl_win64_target)==1', {
322 'sources!': [ 320 'sources!': [
323 'shared_impl/ppb_audio_shared.cc', 321 'shared_impl/ppb_audio_shared.cc',
324 'shared_impl/ppb_graphics_3d_shared.cc', 322 'shared_impl/ppb_graphics_3d_shared.cc',
325 'shared_impl/ppb_opengles2_shared.cc', 323 'shared_impl/ppb_opengles2_shared.cc',
326 'shared_impl/private/ppb_host_resolver_shared.cc', 324 'shared_impl/private/ppb_host_resolver_shared.cc',
327 'shared_impl/private/net_address_private_impl.cc', 325 'shared_impl/private/net_address_private_impl.cc',
328 'shared_impl/private/ppb_tcp_server_socket_shared.cc',
329 'shared_impl/private/tcp_socket_private_impl.cc', 326 'shared_impl/private/tcp_socket_private_impl.cc',
330 'shared_impl/private/udp_socket_private_impl.cc', 327 'shared_impl/private/udp_socket_private_impl.cc',
331 'thunk/ppb_graphics_3d_thunk.cc', 328 'thunk/ppb_graphics_3d_thunk.cc',
332 'thunk/ppb_host_resolver_private_thunk.cc', 329 'thunk/ppb_host_resolver_private_thunk.cc',
333 'thunk/ppb_network_list_private_thunk.cc', 330 'thunk/ppb_network_list_private_thunk.cc',
334 'thunk/ppb_network_monitor_private_thunk.cc', 331 'thunk/ppb_network_monitor_private_thunk.cc',
335 'thunk/ppb_tcp_server_socket_private_thunk.cc', 332 'thunk/ppb_tcp_server_socket_private_thunk.cc',
336 'thunk/ppb_tcp_socket_private_thunk.cc', 333 'thunk/ppb_tcp_socket_private_thunk.cc',
337 'thunk/ppb_udp_socket_private_thunk.cc', 334 'thunk/ppb_udp_socket_private_thunk.cc',
338 'thunk/ppb_x509_certificate_private_thunk.cc', 335 'thunk/ppb_x509_certificate_private_thunk.cc',
339 ], 336 ],
340 }], 337 }],
341 ], 338 ],
342 }], 339 }],
343 ], 340 ],
344 }, 341 },
345 } 342 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698