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

Side by Side Diff: native_client_sdk/src/libraries/ppapi_cpp_private/library.dsc

Issue 17261007: [NaCl SDK] .dsc files copy public headers, add ppapi_cpp dev sources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux', 'mac'],
3 'SEARCH': [ 3 'SEARCH': [
4 '../../../../ppapi/c/private',
4 '../../../../ppapi/cpp/private', 5 '../../../../ppapi/cpp/private',
5 ], 6 ],
6 'TARGETS': [ 7 'TARGETS': [
7 { 8 {
8 'NAME' : 'ppapi_cpp_private', 9 'NAME' : 'ppapi_cpp_private',
9 'TYPE' : 'lib', 10 'TYPE' : 'lib',
10 'SOURCES' : [ 11 'SOURCES' : [
11 'ext_crx_file_system_private.cc', 12 'ext_crx_file_system_private.cc',
12 'file_io_private.cc', 13 'file_io_private.cc',
13 'host_resolver_private.cc', 14 'host_resolver_private.cc',
14 'net_address_private.cc', 15 'net_address_private.cc',
15 'pass_file_handle.cc', 16 'pass_file_handle.cc',
16 'tcp_socket_private.cc', 17 'tcp_socket_private.cc',
17 'tcp_server_socket_private.cc', 18 'tcp_server_socket_private.cc',
18 'udp_socket_private.cc', 19 'udp_socket_private.cc',
19 'x509_certificate_private.cc', 20 'x509_certificate_private.cc',
20 ], 21 ],
21 } 22 }
22 ], 23 ],
24 'HEADERS': [
25 # ppapi/c/private
26 {
27 'FILES': [
28 'ppb_ext_crx_file_system_private.h',
29 'ppb_file_io_private.h',
30 'ppb_file_ref_private.h',
31 'ppb_host_resolver_private.h',
32 'ppb_net_address_private.h',
33 'ppb_tcp_server_socket_private.h',
34 'ppb_tcp_socket_private.h',
35 'ppb_udp_socket_private.h',
36 'ppb_x509_certificate_private.h',
37 'pp_file_handle.h',
38 ],
39 'DEST': 'include/ppapi/c/private',
40 },
41
42 # ppapi/cpp/private
43 {
44 'FILES': [
45 'ext_crx_file_system_private.h',
46 'file_io_private.h',
47 'host_resolver_private.h',
48 'net_address_private.h',
49 'pass_file_handle.h',
50 'tcp_server_socket_private.h',
51 'tcp_socket_private.h',
52 'udp_socket_private.h',
53 'x509_certificate_private.h',
54 ],
55 'DEST': 'include/ppapi/cpp/private',
56 },
57 ],
23 'DEST': 'src', 58 'DEST': 'src',
24 'NAME': 'ppapi_cpp_private', 59 'NAME': 'ppapi_cpp_private',
25 } 60 }
26 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698