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

Unified Diff: libraries/nacl-mounts/Makefile

Issue 10377102: Added simplest device mount implementation (includes NullDevice and RandomDevice) (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | libraries/nacl-mounts/base/KernelProxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libraries/nacl-mounts/Makefile
===================================================================
--- libraries/nacl-mounts/Makefile (revision 580)
+++ libraries/nacl-mounts/Makefile (working copy)
@@ -25,14 +25,15 @@
MEM_SOURCES = $(addprefix memory/, MemMount.cc MemNode.cc)
CONSOLE_SOURCES = $(addprefix console/, ConsoleMount.cc JSPipeMount.cc)
BUFFER_SOURCES = $(addprefix buffer/, BufferMount.cc)
+DEV_SOURCES = $(addprefix dev/, DevMount.cc RandomDevice.cc NullDevice.cc)
TEST_SOURCES = $(addprefix test/, SlotAllocatorTest.cc \
PathTest.cc BaseMountTest.cc MemMountTest.cc \
MemNodeTest.cc MountManagerTest.cc KernelProxyTest.cc \
JSPipeMountTest.cc MainThreadRunnerTest.cc \
- BufferMountTest.cc MockMount.cc)
+ DevMountTest.cc BufferMountTest.cc MockMount.cc)
SOURCES = $(UTIL_SOURCES) $(BASE_SOURCES) $(MEM_SOURCES) \
- $(CONSOLE_SOURCES) $(BUFFER_SOURCES) $(TEST_SOURCES)
+ $(CONSOLE_SOURCES) $(BUFFER_SOURCES) $(DEV_SOURCES) $(TEST_SOURCES)
TESTS_OUT = tests_out
OBJECTS = $(addprefix $(TESTS_OUT)/, $(SOURCES:.cc=.o))
OUTPUT = $(addprefix $(TESTS_OUT)/, base buffer util test memory console)
« no previous file with comments | « no previous file | libraries/nacl-mounts/base/KernelProxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698