veyron/runtimes/google/daemon/proxyd: fix build after go/vcl/2599

Change-Id: Id1d6caac6d55173cba5b29a76fecb6cf37267fee
diff --git a/runtimes/google/daemon/proxyd/main.go b/runtimes/google/daemon/proxyd/main.go
index baf6286..bca0e4d 100644
--- a/runtimes/google/daemon/proxyd/main.go
+++ b/runtimes/google/daemon/proxyd/main.go
@@ -8,8 +8,8 @@
 	_ "net/http/pprof"
 	"time"
 
-	"veyron/runtimes/google/ipc"
 	"veyron/runtimes/google/ipc/stream/proxy"
+	"veyron/runtimes/google/lib/publisher"
 	"veyron2/naming"
 	"veyron2/rt"
 	"veyron2/vlog"
@@ -39,7 +39,7 @@
 	defer proxy.Shutdown()
 
 	if len(*name) > 0 {
-		publisher := ipc.InternalNewPublisher(r.MountTable(), time.Minute)
+		publisher := publisher.New(r.MountTable(), time.Minute)
 		defer publisher.WaitForStop()
 		defer publisher.Stop()
 		publisher.AddServer(naming.JoinAddressName(proxy.Endpoint().String(), ""))