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

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

Issue 914983003: [NaCl SDK] Switch ppapi_simple to C library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tty output bug Created 5 years, 10 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
OLDNEW
1 { 1 {
2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux', 'mac', 'clang-newlib' ], 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux', 'mac', 'clang-newlib' ],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'ppapi_simple', 5 'NAME' : 'ppapi_simple',
6 'TYPE' : 'lib', 6 'TYPE' : 'lib',
7 'SOURCES' : [ 7 'SOURCES' : [
8 "ps.cc", 8 "ps.c",
9 "ps_context_2d.cc", 9 "ps_context_2d.c",
10 "ps_event.cc", 10 "ps_event.c",
11 "ps_instance.cc", 11 "ps_instance.c",
12 "ps_interface.cc", 12 "ps_interface.c",
13 "ps_main.cc", 13 "ps_main.c",
14 "ps_entrypoints_c.c"
14 ], 15 ],
15 } 16 },
16 ], 17 ],
17 'HEADERS': [ 18 'HEADERS': [
18 { 19 {
19 'FILES': [ 20 'FILES': [
20 "ps.h", 21 "ps.h",
21 "ps_context_2d.h", 22 "ps_context_2d.h",
22 "ps_event.h", 23 "ps_event.h",
23 "ps_instance.h", 24 "ps_instance.h",
24 "ps_interface.h", 25 "ps_interface.h",
25 "ps_main.h", 26 "ps_main.h",
26 ], 27 ],
27 'DEST': 'include/ppapi_simple', 28 'DEST': 'include/ppapi_simple',
28 }, 29 },
29 ], 30 ],
30 'DEST': 'src', 31 'DEST': 'src',
31 'NAME': 'ppapi_simple', 32 'NAME': 'ppapi_simple',
32 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698