wasm: drop pprof dependency

We can use the browser tools to profile, pprof adds 200K to the binary size.

Updates #3157

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
This commit is contained in:
Mihai Parparita
2022-06-07 11:50:12 -07:00
committed by Mihai Parparita
parent bb67999808
commit c41837842b
4 changed files with 32 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !js
// +build !js
// Package logheap logs a heap pprof profile.
package logheap

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package logheap
func LogHeap(postURL string) {
}