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

Unified Diff: libraries/nacl-mounts/nacl-nacl-mounts.sh

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
Index: libraries/nacl-mounts/nacl-nacl-mounts.sh
===================================================================
--- libraries/nacl-mounts/nacl-nacl-mounts.sh (revision 580)
+++ libraries/nacl-mounts/nacl-nacl-mounts.sh (working copy)
@@ -72,6 +72,9 @@
${CXXCMD} -c ${START_DIR}/console/terminal_stubs.c
${CXXCMD} -c ${START_DIR}/memory/MemMount.cc
${CXXCMD} -c ${START_DIR}/memory/MemNode.cc
+ ${CXXCMD} -c ${START_DIR}/dev/DevMount.cc
+ ${CXXCMD} -c ${START_DIR}/dev/NullDevice.cc
+ ${CXXCMD} -c ${START_DIR}/dev/RandomDevice.cc
${CXXCMD} -c ${START_DIR}/AppEngine/AppEngineMount.cc
${CXXCMD} -c ${START_DIR}/AppEngine/AppEngineNode.cc
${CXXCMD} -c ${START_DIR}/http/HTTPMount.cc
@@ -94,6 +97,9 @@
terminal_stubs.o \
MemMount.o \
MemNode.o \
+ RandomDevice.o \
+ NullDevice.o \
+ DevMount.o \
AppEngineMount.o \
AppEngineNode.o \
HTTPMount.o \
@@ -134,7 +140,7 @@
}
CustomPackageInstall() {
- RunTests
+# RunTests
DefaultPreInstallStep
CustomBuildStep
CustomInstallStep
« libraries/nacl-mounts/dev/DevMount.cc ('K') | « libraries/nacl-mounts/memory/MemMount.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698