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

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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 'variables': { 6 'variables': {
7 'c_source_files': [ 7 'c_source_files': [
8 'c/pp_array_output.h', 8 'c/pp_array_output.h',
9 'c/pp_bool.h', 9 'c/pp_bool.h',
10 'c/pp_completion_callback.h', 10 'c/pp_completion_callback.h',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'c/private/ppb_nacl_private.h', 103 'c/private/ppb_nacl_private.h',
104 'c/private/ppb_net_address_private.h', 104 'c/private/ppb_net_address_private.h',
105 'c/private/ppb_pdf.h', 105 'c/private/ppb_pdf.h',
106 'c/private/ppb_proxy_private.h', 106 'c/private/ppb_proxy_private.h',
107 'c/private/ppp_instance_private.h', 107 'c/private/ppp_instance_private.h',
108 'c/private/ppb_network_list_private.h', 108 'c/private/ppb_network_list_private.h',
109 'c/private/ppb_network_monitor_private.h', 109 'c/private/ppb_network_monitor_private.h',
110 'c/private/ppb_tcp_server_socket_private.h', 110 'c/private/ppb_tcp_server_socket_private.h',
111 'c/private/ppb_tcp_socket_private.h', 111 'c/private/ppb_tcp_socket_private.h',
112 'c/private/ppb_udp_socket_private.h', 112 'c/private/ppb_udp_socket_private.h',
113 'c/private/ppb_x509_certificate_private.h',
113 114
114 # Deprecated interfaces. 115 # Deprecated interfaces.
115 'c/dev/deprecated_bool.h', 116 'c/dev/deprecated_bool.h',
116 'c/dev/ppb_var_deprecated.h', 117 'c/dev/ppb_var_deprecated.h',
117 'c/dev/ppp_class_deprecated.h', 118 'c/dev/ppp_class_deprecated.h',
118 119
119 # Trusted interfaces. 120 # Trusted interfaces.
120 'c/trusted/ppb_audio_trusted.h', 121 'c/trusted/ppb_audio_trusted.h',
121 'c/trusted/ppb_broker_trusted.h', 122 'c/trusted/ppb_broker_trusted.h',
122 'c/trusted/ppb_browser_font_trusted.h', 123 'c/trusted/ppb_browser_font_trusted.h',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'cpp/private/network_monitor_private.cc', 270 'cpp/private/network_monitor_private.cc',
270 'cpp/private/network_monitor_private.h', 271 'cpp/private/network_monitor_private.h',
271 'cpp/private/tcp_server_socket_private.cc', 272 'cpp/private/tcp_server_socket_private.cc',
272 'cpp/private/tcp_server_socket_private.h', 273 'cpp/private/tcp_server_socket_private.h',
273 'cpp/private/tcp_socket_private.cc', 274 'cpp/private/tcp_socket_private.cc',
274 'cpp/private/tcp_socket_private.h', 275 'cpp/private/tcp_socket_private.h',
275 'cpp/private/udp_socket_private.cc', 276 'cpp/private/udp_socket_private.cc',
276 'cpp/private/udp_socket_private.h', 277 'cpp/private/udp_socket_private.h',
277 'cpp/private/var_private.cc', 278 'cpp/private/var_private.cc',
278 'cpp/private/var_private.h', 279 'cpp/private/var_private.h',
280 'cpp/private/x509_certificate_private.cc',
281 'cpp/private/x509_certificate_private.h',
279 282
280 # Trusted interfaces. 283 # Trusted interfaces.
281 'cpp/trusted/browser_font_trusted.cc', 284 'cpp/trusted/browser_font_trusted.cc',
282 'cpp/trusted/browser_font_trusted.h', 285 'cpp/trusted/browser_font_trusted.h',
283 'cpp/trusted/file_chooser_trusted.cc', 286 'cpp/trusted/file_chooser_trusted.cc',
284 'cpp/trusted/file_chooser_trusted.h', 287 'cpp/trusted/file_chooser_trusted.h',
285 'cpp/trusted/file_io_trusted.cc', 288 'cpp/trusted/file_io_trusted.cc',
286 'cpp/trusted/file_io_trusted.h', 289 'cpp/trusted/file_io_trusted.h',
287 290
288 # Utility sources. 291 # Utility sources.
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'tests/test_utils.cc', 440 'tests/test_utils.cc',
438 'tests/test_utils.h', 441 'tests/test_utils.h',
439 'tests/test_var.cc', 442 'tests/test_var.cc',
440 'tests/test_var.h', 443 'tests/test_var.h',
441 'tests/test_view.cc', 444 'tests/test_view.cc',
442 'tests/test_view.h', 445 'tests/test_view.h',
443 'tests/test_video_decoder.cc', 446 'tests/test_video_decoder.cc',
444 'tests/test_video_decoder.h', 447 'tests/test_video_decoder.h',
445 'tests/test_websocket.cc', 448 'tests/test_websocket.cc',
446 'tests/test_websocket.h', 449 'tests/test_websocket.h',
450 'tests/test_x509_certificate_private.cc',
451 'tests/test_x509_certificate_private.h',
447 452
448 # Deprecated test cases. 453 # Deprecated test cases.
449 'tests/test_instance_deprecated.cc', 454 'tests/test_instance_deprecated.cc',
450 'tests/test_instance_deprecated.h', 455 'tests/test_instance_deprecated.h',
451 'tests/test_var_deprecated.cc', 456 'tests/test_var_deprecated.cc',
452 'tests/test_var_deprecated.h', 457 'tests/test_var_deprecated.h',
453 ], 458 ],
454 }, 459 },
455 'conditions': [ 460 'conditions': [
456 ['p2p_apis==1', { 461 ['p2p_apis==1', {
457 'variables': { 462 'variables': {
458 'c_source_files': [ 463 'c_source_files': [
459 'c/dev/ppb_transport_dev.h', 464 'c/dev/ppb_transport_dev.h',
460 ], 465 ],
461 'cpp_source_files': [ 466 'cpp_source_files': [
462 'cpp/dev/transport_dev.cc', 467 'cpp/dev/transport_dev.cc',
463 'cpp/dev/transport_dev.h', 468 'cpp/dev/transport_dev.h',
464 ], 469 ],
465 }, 470 },
466 }], 471 }],
467 ], 472 ],
468 } 473 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698