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

Side by Side Diff: native_client_sdk/src/libraries/utils/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
(Empty)
1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
3 'SEARCH': [
4 '.',
5 'pepper'
binji 2013/06/05 00:01:09 not needed
nfullagar1 2013/06/05 00:11:45 Done.
6 ],
7 'TARGETS': [
binji 2013/06/05 00:01:09 remove TARGETS
nfullagar1 2013/06/05 00:11:45 this was needed to make the python scripts pass.
8 {
9 'NAME' : 'utils',
10 'TYPE' : 'lib',
11 'SOURCES' : [
12 'utils.cc'
13 ]
14 }
15 ],
16 'HEADERS': [
17 {
18 'FILES': [
19 'auto_lock.h',
20 'macros.h',
21 'ref_object.h',
22 'thread_pool.h'
23 ],
24 'DEST': 'include/utils',
25 }
26 ],
27 'DEST': 'src',
28 'NAME': 'utils',
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698