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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 23450012: Make NetworkList and NetworkMonitor APIs public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/ppapi_sources.gypi » ('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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'thunk/ppb_instance_api.h', 200 'thunk/ppb_instance_api.h',
201 'thunk/ppb_instance_private_thunk.cc', 201 'thunk/ppb_instance_private_thunk.cc',
202 'thunk/ppb_instance_thunk.cc', 202 'thunk/ppb_instance_thunk.cc',
203 'thunk/ppb_message_loop_api.h', 203 'thunk/ppb_message_loop_api.h',
204 'thunk/ppb_messaging_thunk.cc', 204 'thunk/ppb_messaging_thunk.cc',
205 'thunk/ppb_mouse_cursor_thunk.cc', 205 'thunk/ppb_mouse_cursor_thunk.cc',
206 'thunk/ppb_mouse_lock_thunk.cc', 206 'thunk/ppb_mouse_lock_thunk.cc',
207 'thunk/ppb_net_address_api.h', 207 'thunk/ppb_net_address_api.h',
208 'thunk/ppb_net_address_thunk.cc', 208 'thunk/ppb_net_address_thunk.cc',
209 'thunk/ppb_network_list_api.h', 209 'thunk/ppb_network_list_api.h',
210 'thunk/ppb_network_list_private_thunk.cc', 210 'thunk/ppb_network_list_thunk.cc',
211 'thunk/ppb_network_monitor_api.h', 211 'thunk/ppb_network_monitor_api.h',
212 'thunk/ppb_network_monitor_private_thunk.cc', 212 'thunk/ppb_network_monitor_thunk.cc',
213 'thunk/ppb_network_proxy_api.h', 213 'thunk/ppb_network_proxy_api.h',
214 'thunk/ppb_network_proxy_thunk.cc', 214 'thunk/ppb_network_proxy_thunk.cc',
215 'thunk/ppb_pdf_api.h', 215 'thunk/ppb_pdf_api.h',
216 'thunk/ppb_pdf_thunk.cc', 216 'thunk/ppb_pdf_thunk.cc',
217 'thunk/ppb_platform_verification_api.h', 217 'thunk/ppb_platform_verification_api.h',
218 'thunk/ppb_platform_verification_private_thunk.cc', 218 'thunk/ppb_platform_verification_private_thunk.cc',
219 'thunk/ppb_printing_api.h', 219 'thunk/ppb_printing_api.h',
220 'thunk/ppb_printing_dev_thunk.cc', 220 'thunk/ppb_printing_dev_thunk.cc',
221 'thunk/ppb_resource_array_api.h', 221 'thunk/ppb_resource_array_api.h',
222 'thunk/ppb_resource_array_dev_thunk.cc', 222 'thunk/ppb_resource_array_dev_thunk.cc',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 # more dependencies. 317 # more dependencies.
318 ['>(nacl_win64_target)==1', { 318 ['>(nacl_win64_target)==1', {
319 'sources!': [ 319 'sources!': [
320 'shared_impl/ppb_audio_shared.cc', 320 'shared_impl/ppb_audio_shared.cc',
321 'shared_impl/ppb_graphics_3d_shared.cc', 321 'shared_impl/ppb_graphics_3d_shared.cc',
322 'shared_impl/ppb_opengles2_shared.cc', 322 'shared_impl/ppb_opengles2_shared.cc',
323 'shared_impl/private/ppb_host_resolver_shared.cc', 323 'shared_impl/private/ppb_host_resolver_shared.cc',
324 'shared_impl/private/net_address_private_impl.cc', 324 'shared_impl/private/net_address_private_impl.cc',
325 'thunk/ppb_graphics_3d_thunk.cc', 325 'thunk/ppb_graphics_3d_thunk.cc',
326 'thunk/ppb_host_resolver_private_thunk.cc', 326 'thunk/ppb_host_resolver_private_thunk.cc',
327 'thunk/ppb_network_list_private_thunk.cc',
328 'thunk/ppb_network_monitor_private_thunk.cc',
329 'thunk/ppb_tcp_server_socket_private_thunk.cc', 327 'thunk/ppb_tcp_server_socket_private_thunk.cc',
330 'thunk/ppb_tcp_socket_private_thunk.cc', 328 'thunk/ppb_tcp_socket_private_thunk.cc',
331 'thunk/ppb_udp_socket_private_thunk.cc', 329 'thunk/ppb_udp_socket_private_thunk.cc',
332 'thunk/ppb_x509_certificate_private_thunk.cc', 330 'thunk/ppb_x509_certificate_private_thunk.cc',
333 ], 331 ],
334 }], 332 }],
335 ], 333 ],
336 }], 334 }],
337 ], 335 ],
338 }, 336 },
339 } 337 }
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/ppapi_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698