Replacing veyron.io with v.io.
diff --git a/tools/vrun/test.sh b/tools/vrun/test.sh
index 312ace2..df9a705 100755
--- a/tools/vrun/test.sh
+++ b/tools/vrun/test.sh
@@ -2,12 +2,12 @@
 
 # Test running an application using vrun under the agent.
 
-source "$(go list -f {{.Dir}} veyron.io/veyron/shell/lib)/shell_test.sh"
+source "$(go list -f {{.Dir}} v.io/veyron/shell/lib)/shell_test.sh"
 
 readonly WORKDIR="${shell_test_WORK_DIR}"
 
 build() {
-  AGENTD_BIN="$(shell_test::build_go_binary 'veyron.io/veyron/veyron/security/agent/agentd')"
+  AGENTD_BIN="$(shell_test::build_go_binary 'v.io/veyron/veyron/security/agent/agentd')"
 }
 
 main() {
@@ -18,7 +18,7 @@
 
   # Make sure the testchild.sh script gets the same shell_test_BIN_DIR as the main script.
   export shell_test_BIN_DIR
-  "${AGENTD_BIN}" --no_passphrase --additional_principals="$(shell::tmp_dir)" bash "$(go list -f {{.Dir}} veyron.io/veyron/veyron/tools/vrun)/testchild.sh" || shell_test::fail "${LINENO}: testchild.sh failed"
+  "${AGENTD_BIN}" --no_passphrase --additional_principals="$(shell::tmp_dir)" bash "$(go list -f {{.Dir}} v.io/veyron/veyron/tools/vrun)/testchild.sh" || shell_test::fail "${LINENO}: testchild.sh failed"
 
   shell_test::pass
 }
diff --git a/tools/vrun/testchild.sh b/tools/vrun/testchild.sh
index ea61261..04a6cbd 100755
--- a/tools/vrun/testchild.sh
+++ b/tools/vrun/testchild.sh
@@ -2,13 +2,13 @@
 
 # Helper script for testing vrun.
 
-source "$(go list -f {{.Dir}} veyron.io/veyron/shell/lib)/shell_test.sh"
+source "$(go list -f {{.Dir}} v.io/veyron/shell/lib)/shell_test.sh"
 
 main() {
   shell_test::setup_server_test
-  local -r PINGPONG="$(shell_test::build_go_binary 'veyron.io/veyron/veyron/security/agent/pingpong')"
-  local -r VRUN="$(shell_test::build_go_binary 'veyron.io/veyron/veyron/tools/vrun')"
-  local -r PRINCIPAL="$(shell_test::build_go_binary 'veyron.io/veyron/veyron/tools/principal')"
+  local -r PINGPONG="$(shell_test::build_go_binary 'v.io/veyron/veyron/security/agent/pingpong')"
+  local -r VRUN="$(shell_test::build_go_binary 'v.io/veyron/veyron/tools/vrun')"
+  local -r PRINCIPAL="$(shell_test::build_go_binary 'v.io/veyron/veyron/tools/principal')"
 
   local blessing=$("${PRINCIPAL}" dump | grep Default|cut -d: -f2)
   shell_test::assert_eq "${blessing}" " agent_principal" $LINENO
diff --git a/tools/vrun/vrun.go b/tools/vrun/vrun.go
index 8fb8555..6cd702f 100644
--- a/tools/vrun/vrun.go
+++ b/tools/vrun/vrun.go
@@ -7,18 +7,18 @@
 	"syscall"
 	"time"
 
-	"veyron.io/lib/cmdline"
-	"veyron.io/veyron/veyron/lib/flags/consts"
-	"veyron.io/veyron/veyron/security/agent"
-	"veyron.io/veyron/veyron/security/agent/keymgr"
+	"v.io/lib/cmdline"
+	"v.io/veyron/veyron/lib/flags/consts"
+	"v.io/veyron/veyron/security/agent"
+	"v.io/veyron/veyron/security/agent/keymgr"
 
-	"veyron.io/veyron/veyron2"
-	"veyron.io/veyron/veyron2/options"
-	"veyron.io/veyron/veyron2/rt"
-	"veyron.io/veyron/veyron2/security"
-	"veyron.io/veyron/veyron2/vlog"
+	"v.io/veyron/veyron2"
+	"v.io/veyron/veyron2/options"
+	"v.io/veyron/veyron2/rt"
+	"v.io/veyron/veyron2/security"
+	"v.io/veyron/veyron2/vlog"
 
-	_ "veyron.io/veyron/veyron/profiles"
+	_ "v.io/veyron/veyron/profiles"
 )
 
 var runtime veyron2.Runtime