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

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

Issue 16325024: Move thread_pool.h into utils so it can be shared by more than one example. (Closed) Base URL: svn://chrome-svn/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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
3 'SEARCH': [ 3 'SEARCH': [
4 '.', 4 '.',
5 'pepper', 5 'pepper',
6 '../utils' 6 '../utils'
binji 2013/06/05 00:01:09 remove this line
nfullagar1 2013/06/05 00:11:45 Done.
7 ], 7 ],
8 'TARGETS': [ 8 'TARGETS': [
9 { 9 {
10 'NAME' : 'nacl_io', 10 'NAME' : 'nacl_io',
11 'TYPE' : 'lib', 11 'TYPE' : 'lib',
12 'SOURCES' : [ 12 'SOURCES' : [
13 "kernel_handle.cc", 13 "kernel_handle.cc",
14 "kernel_intercept.cc", 14 "kernel_intercept.cc",
15 "kernel_object.cc", 15 "kernel_object.cc",
16 "kernel_proxy.cc", 16 "kernel_proxy.cc",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ], 66 ],
67 'DEST': 'include/nacl_io', 67 'DEST': 'include/nacl_io',
68 }, 68 },
69 { 69 {
70 'FILES': [ 70 'FILES': [
71 "all_interfaces.h", 71 "all_interfaces.h",
72 "define_empty_macros.h", 72 "define_empty_macros.h",
73 "undef_macros.h", 73 "undef_macros.h",
74 ], 74 ],
75 'DEST': 'include/nacl_io/pepper', 75 'DEST': 'include/nacl_io/pepper',
76 },
77 {
78 'FILES': [
79 "auto_lock.h",
80 "macros.h",
81 "ref_object.h"
82 ],
83 'DEST': 'include/utils',
84 } 76 }
85 ], 77 ],
86 'DEST': 'src', 78 'DEST': 'src',
87 'NAME': 'nacl_io', 79 'NAME': 'nacl_io',
88 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698