Revert "tcmalloc: Move existing tcmalloc files under gperftools-2.0."

This reverts commit 615e0342e44cbe073b1958ab9f5a318d799f6f34.

Reason for revert: breaks compilation with enable_profiling = true

Original change's description:
> tcmalloc: Move existing tcmalloc files under gperftools-2.0.
> 
> Move existing tcmalloc files, both vendor and chromium, under gperftools-2.0
> in preparation for upreving tcmalloc to the most recent gperftools version.
> 
> This CL did:
> 
>   # Create a gerftools-2.0 folder.
>   mkdir gperftools-2.0
> 
>   # Move vendor/ and chromium/ under the new folder.
>   git mv vendor gperftools-2.0/vendor
>   git mv chromium gperftools-2.0/chromium
> 
>   # Update //base/allocator/BUILD.gn to have tcmalloc_dir point to
>   # //third_party/tcmalloc/gperftools-2.0/chromium/src.
>   # Update addr2line-pdb sources in tcmalloc/BUILD.gn.
>   # Update include paths in files under //base/process and //base/allocator.
> 
> This is old code that uses currently banned functions.
> NOPRESUBMIT=true
> 
> BUG=724399,b:70905156
> 
> Change-Id: I498a6edda48e178bbacfb41e30f75e9e96e336fc
> Reviewed-on: https://chromium-review.googlesource.com/1130670
> Reviewed-by: Will Harris <wfh@chromium.org>
> Commit-Queue: Gabriel Marin <gmx@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#574346}

TBR=wfh@chromium.org,gmx@chromium.org

Change-Id: Ifdd162a045009444621c6e3052f348919fdafc96
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 724399, b:70905156
Reviewed-on: https://chromium-review.googlesource.com/1135266
Reviewed-by: Jochen Eisinger <jochen@chromium.org>
Commit-Queue: Jochen Eisinger <jochen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#574561}
diff --git a/base/allocator/BUILD.gn b/base/allocator/BUILD.gn
index c931d0fb..82489ba 100644
--- a/base/allocator/BUILD.gn
+++ b/base/allocator/BUILD.gn
@@ -74,7 +74,7 @@
 if (use_allocator == "tcmalloc") {
   # tcmalloc currently won't compile on Android.
   source_set("tcmalloc") {
-    tcmalloc_dir = "//third_party/tcmalloc/gperftools-2.0/chromium"
+    tcmalloc_dir = "//third_party/tcmalloc/chromium"
 
     # Don't check tcmalloc's includes. These files include various files like
     # base/foo.h and they actually refer to tcmalloc's forked copy of base
diff --git a/base/allocator/allocator_extension.cc b/base/allocator/allocator_extension.cc
index b6ddbaa..9a3d114f 100644
--- a/base/allocator/allocator_extension.cc
+++ b/base/allocator/allocator_extension.cc
@@ -7,9 +7,9 @@
 #include "base/logging.h"
 
 #if defined(USE_TCMALLOC)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/heap-profiler.h"
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_extension.h"
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_hook.h"
+#include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h"
+#include "third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h"
+#include "third_party/tcmalloc/chromium/src/gperftools/malloc_hook.h"
 #endif
 
 namespace base {
diff --git a/base/allocator/allocator_shim_default_dispatch_to_tcmalloc.cc b/base/allocator/allocator_shim_default_dispatch_to_tcmalloc.cc
index 71e4979..878e8a7 100644
--- a/base/allocator/allocator_shim_default_dispatch_to_tcmalloc.cc
+++ b/base/allocator/allocator_shim_default_dispatch_to_tcmalloc.cc
@@ -4,8 +4,8 @@
 
 #include "base/allocator/allocator_shim.h"
 #include "base/allocator/allocator_shim_internals.h"
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config.h"
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h"
+#include "third_party/tcmalloc/chromium/src/config.h"
+#include "third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h"
 
 namespace {
 
diff --git a/base/allocator/debugallocation_shim.cc b/base/allocator/debugallocation_shim.cc
index 7eb4504..479cfca 100644
--- a/base/allocator/debugallocation_shim.cc
+++ b/base/allocator/debugallocation_shim.cc
@@ -14,7 +14,7 @@
 #endif
 
 #if defined(TCMALLOC_FOR_DEBUGALLOCATION)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/debugallocation.cc"
+#include "third_party/tcmalloc/chromium/src/debugallocation.cc"
 #else
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc.cc"
+#include "third_party/tcmalloc/chromium/src/tcmalloc.cc"
 #endif
diff --git a/base/process/memory_linux.cc b/base/process/memory_linux.cc
index 171753c..21b2069 100644
--- a/base/process/memory_linux.cc
+++ b/base/process/memory_linux.cc
@@ -18,8 +18,8 @@
 #include "build/build_config.h"
 
 #if defined(USE_TCMALLOC)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config.h"
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h"
+#include "third_party/tcmalloc/chromium/src/config.h"
+#include "third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h"
 #endif
 
 namespace base {
diff --git a/third_party/tcmalloc/BUILD.gn b/third_party/tcmalloc/BUILD.gn
index 4249264..ea10b28 100644
--- a/third_party/tcmalloc/BUILD.gn
+++ b/third_party/tcmalloc/BUILD.gn
@@ -6,7 +6,7 @@
 
 executable("addr2line-pdb") {
   sources = [
-    "gperftools-2.0/chromium/src/windows/addr2line-pdb.c",
+    "chromium/src/windows/addr2line-pdb.c",
   ]
 
   configs -= [ "//build/config/compiler:chromium_code" ]
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/OWNERS b/third_party/tcmalloc/chromium/src/OWNERS
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/OWNERS
rename to third_party/tcmalloc/chromium/src/OWNERS
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/addressmap-inl.h b/third_party/tcmalloc/chromium/src/addressmap-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/addressmap-inl.h
rename to third_party/tcmalloc/chromium/src/addressmap-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/abort.cc b/third_party/tcmalloc/chromium/src/base/abort.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/abort.cc
rename to third_party/tcmalloc/chromium/src/base/abort.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/abort.h b/third_party/tcmalloc/chromium/src/base/abort.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/abort.h
rename to third_party/tcmalloc/chromium/src/base/abort.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/arm_instruction_set_select.h b/third_party/tcmalloc/chromium/src/base/arm_instruction_set_select.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/arm_instruction_set_select.h
rename to third_party/tcmalloc/chromium/src/base/arm_instruction_set_select.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-arm-generic.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-generic.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-arm-generic.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-generic.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-arm-v6plus.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-v6plus.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-arm-v6plus.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-v6plus.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-linuxppc.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-linuxppc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-linuxppc.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-linuxppc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-macosx.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-macosx.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-macosx.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-macosx.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-mips.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-mips.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-mips.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-mips.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-windows.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-windows.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-windows.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-windows.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-x86.cc b/third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-x86.cc
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-x86.h b/third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops-internals-x86.h
rename to third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops.h b/third_party/tcmalloc/chromium/src/base/atomicops.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/atomicops.h
rename to third_party/tcmalloc/chromium/src/base/atomicops.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/basictypes.h b/third_party/tcmalloc/chromium/src/base/basictypes.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/basictypes.h
rename to third_party/tcmalloc/chromium/src/base/basictypes.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/commandlineflags.h b/third_party/tcmalloc/chromium/src/base/commandlineflags.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/commandlineflags.h
rename to third_party/tcmalloc/chromium/src/base/commandlineflags.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/cycleclock.h b/third_party/tcmalloc/chromium/src/base/cycleclock.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/cycleclock.h
rename to third_party/tcmalloc/chromium/src/base/cycleclock.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/dynamic_annotations.c b/third_party/tcmalloc/chromium/src/base/dynamic_annotations.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/dynamic_annotations.c
rename to third_party/tcmalloc/chromium/src/base/dynamic_annotations.c
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/dynamic_annotations.h b/third_party/tcmalloc/chromium/src/base/dynamic_annotations.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/dynamic_annotations.h
rename to third_party/tcmalloc/chromium/src/base/dynamic_annotations.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/elf_mem_image.cc b/third_party/tcmalloc/chromium/src/base/elf_mem_image.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/elf_mem_image.cc
rename to third_party/tcmalloc/chromium/src/base/elf_mem_image.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/elf_mem_image.h b/third_party/tcmalloc/chromium/src/base/elf_mem_image.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/elf_mem_image.h
rename to third_party/tcmalloc/chromium/src/base/elf_mem_image.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/elfcore.h b/third_party/tcmalloc/chromium/src/base/elfcore.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/elfcore.h
rename to third_party/tcmalloc/chromium/src/base/elfcore.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/googleinit.h b/third_party/tcmalloc/chromium/src/base/googleinit.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/googleinit.h
rename to third_party/tcmalloc/chromium/src/base/googleinit.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/linux_syscall_support.h b/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/linux_syscall_support.h
rename to third_party/tcmalloc/chromium/src/base/linux_syscall_support.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/linuxthreads.cc b/third_party/tcmalloc/chromium/src/base/linuxthreads.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/linuxthreads.cc
rename to third_party/tcmalloc/chromium/src/base/linuxthreads.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/linuxthreads.h b/third_party/tcmalloc/chromium/src/base/linuxthreads.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/linuxthreads.h
rename to third_party/tcmalloc/chromium/src/base/linuxthreads.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/logging.cc b/third_party/tcmalloc/chromium/src/base/logging.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/logging.cc
rename to third_party/tcmalloc/chromium/src/base/logging.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/logging.h b/third_party/tcmalloc/chromium/src/base/logging.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/logging.h
rename to third_party/tcmalloc/chromium/src/base/logging.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/low_level_alloc.cc b/third_party/tcmalloc/chromium/src/base/low_level_alloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/low_level_alloc.cc
rename to third_party/tcmalloc/chromium/src/base/low_level_alloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/low_level_alloc.h b/third_party/tcmalloc/chromium/src/base/low_level_alloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/low_level_alloc.h
rename to third_party/tcmalloc/chromium/src/base/low_level_alloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/simple_mutex.h b/third_party/tcmalloc/chromium/src/base/simple_mutex.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/simple_mutex.h
rename to third_party/tcmalloc/chromium/src/base/simple_mutex.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock.cc b/third_party/tcmalloc/chromium/src/base/spinlock.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock.cc
rename to third_party/tcmalloc/chromium/src/base/spinlock.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock.h b/third_party/tcmalloc/chromium/src/base/spinlock.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock.h
rename to third_party/tcmalloc/chromium/src/base/spinlock.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_internal.cc b/third_party/tcmalloc/chromium/src/base/spinlock_internal.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_internal.cc
rename to third_party/tcmalloc/chromium/src/base/spinlock_internal.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_internal.h b/third_party/tcmalloc/chromium/src/base/spinlock_internal.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_internal.h
rename to third_party/tcmalloc/chromium/src/base/spinlock_internal.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_linux-inl.h b/third_party/tcmalloc/chromium/src/base/spinlock_linux-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_linux-inl.h
rename to third_party/tcmalloc/chromium/src/base/spinlock_linux-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_posix-inl.h b/third_party/tcmalloc/chromium/src/base/spinlock_posix-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_posix-inl.h
rename to third_party/tcmalloc/chromium/src/base/spinlock_posix-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_win32-inl.h b/third_party/tcmalloc/chromium/src/base/spinlock_win32-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/spinlock_win32-inl.h
rename to third_party/tcmalloc/chromium/src/base/spinlock_win32-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/stl_allocator.h b/third_party/tcmalloc/chromium/src/base/stl_allocator.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/stl_allocator.h
rename to third_party/tcmalloc/chromium/src/base/stl_allocator.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/synchronization_profiling.h b/third_party/tcmalloc/chromium/src/base/synchronization_profiling.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/synchronization_profiling.h
rename to third_party/tcmalloc/chromium/src/base/synchronization_profiling.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/sysinfo.cc b/third_party/tcmalloc/chromium/src/base/sysinfo.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/sysinfo.cc
rename to third_party/tcmalloc/chromium/src/base/sysinfo.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/sysinfo.h b/third_party/tcmalloc/chromium/src/base/sysinfo.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/sysinfo.h
rename to third_party/tcmalloc/chromium/src/base/sysinfo.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_annotations.h b/third_party/tcmalloc/chromium/src/base/thread_annotations.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_annotations.h
rename to third_party/tcmalloc/chromium/src/base/thread_annotations.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_lister.c b/third_party/tcmalloc/chromium/src/base/thread_lister.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_lister.c
rename to third_party/tcmalloc/chromium/src/base/thread_lister.c
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_lister.h b/third_party/tcmalloc/chromium/src/base/thread_lister.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/thread_lister.h
rename to third_party/tcmalloc/chromium/src/base/thread_lister.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/vdso_support.cc b/third_party/tcmalloc/chromium/src/base/vdso_support.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/vdso_support.cc
rename to third_party/tcmalloc/chromium/src/base/vdso_support.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/base/vdso_support.h b/third_party/tcmalloc/chromium/src/base/vdso_support.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/base/vdso_support.h
rename to third_party/tcmalloc/chromium/src/base/vdso_support.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/central_freelist.cc b/third_party/tcmalloc/chromium/src/central_freelist.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/central_freelist.cc
rename to third_party/tcmalloc/chromium/src/central_freelist.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/central_freelist.h b/third_party/tcmalloc/chromium/src/central_freelist.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/central_freelist.h
rename to third_party/tcmalloc/chromium/src/central_freelist.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/common.cc b/third_party/tcmalloc/chromium/src/common.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/common.cc
rename to third_party/tcmalloc/chromium/src/common.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/common.h b/third_party/tcmalloc/chromium/src/common.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/common.h
rename to third_party/tcmalloc/chromium/src/common.h
diff --git a/third_party/tcmalloc/chromium/src/config.h b/third_party/tcmalloc/chromium/src/config.h
new file mode 100644
index 0000000..f2ac8f69
--- /dev/null
+++ b/third_party/tcmalloc/chromium/src/config.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONFIG_H_
+
+#include "build/build_config.h"
+
+#if defined(OS_WIN)
+#include "third_party/tcmalloc/chromium/src/config_win.h"
+#elif defined(OS_ANDROID)
+#include "third_party/tcmalloc/chromium/src/config_android.h"
+#elif defined(OS_LINUX)
+#include "third_party/tcmalloc/chromium/src/config_linux.h"
+#elif defined(OS_FREEBSD)
+#include "third_party/tcmalloc/chromium/src/config_freebsd.h"
+#endif
+
+#endif // CONFIG_H_
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config.h.in b/third_party/tcmalloc/chromium/src/config.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config.h.in
rename to third_party/tcmalloc/chromium/src/config.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config_android.h b/third_party/tcmalloc/chromium/src/config_android.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config_android.h
rename to third_party/tcmalloc/chromium/src/config_android.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config_for_unittests.h b/third_party/tcmalloc/chromium/src/config_for_unittests.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config_for_unittests.h
rename to third_party/tcmalloc/chromium/src/config_for_unittests.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config_freebsd.h b/third_party/tcmalloc/chromium/src/config_freebsd.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config_freebsd.h
rename to third_party/tcmalloc/chromium/src/config_freebsd.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config_linux.h b/third_party/tcmalloc/chromium/src/config_linux.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config_linux.h
rename to third_party/tcmalloc/chromium/src/config_linux.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config_win.h b/third_party/tcmalloc/chromium/src/config_win.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/config_win.h
rename to third_party/tcmalloc/chromium/src/config_win.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/debugallocation.cc b/third_party/tcmalloc/chromium/src/debugallocation.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/debugallocation.cc
rename to third_party/tcmalloc/chromium/src/debugallocation.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/free_list.cc b/third_party/tcmalloc/chromium/src/free_list.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/free_list.cc
rename to third_party/tcmalloc/chromium/src/free_list.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/free_list.h b/third_party/tcmalloc/chromium/src/free_list.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/free_list.h
rename to third_party/tcmalloc/chromium/src/free_list.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/getpc.h b/third_party/tcmalloc/chromium/src/getpc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/getpc.h
rename to third_party/tcmalloc/chromium/src/getpc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/heap-checker.h b/third_party/tcmalloc/chromium/src/google/heap-checker.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/heap-checker.h
rename to third_party/tcmalloc/chromium/src/google/heap-checker.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/heap-profiler.h b/third_party/tcmalloc/chromium/src/google/heap-profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/heap-profiler.h
rename to third_party/tcmalloc/chromium/src/google/heap-profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_extension.h b/third_party/tcmalloc/chromium/src/google/malloc_extension.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_extension.h
rename to third_party/tcmalloc/chromium/src/google/malloc_extension.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_extension_c.h b/third_party/tcmalloc/chromium/src/google/malloc_extension_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_extension_c.h
rename to third_party/tcmalloc/chromium/src/google/malloc_extension_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_hook.h b/third_party/tcmalloc/chromium/src/google/malloc_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_hook.h
rename to third_party/tcmalloc/chromium/src/google/malloc_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_hook_c.h b/third_party/tcmalloc/chromium/src/google/malloc_hook_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/malloc_hook_c.h
rename to third_party/tcmalloc/chromium/src/google/malloc_hook_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/profiler.h b/third_party/tcmalloc/chromium/src/google/profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/profiler.h
rename to third_party/tcmalloc/chromium/src/google/profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/stacktrace.h b/third_party/tcmalloc/chromium/src/google/stacktrace.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/stacktrace.h
rename to third_party/tcmalloc/chromium/src/google/stacktrace.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/google/tcmalloc.h b/third_party/tcmalloc/chromium/src/google/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/google/tcmalloc.h
rename to third_party/tcmalloc/chromium/src/google/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/heap-checker.h b/third_party/tcmalloc/chromium/src/gperftools/heap-checker.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/heap-checker.h
rename to third_party/tcmalloc/chromium/src/gperftools/heap-checker.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/heap-profiler.h b/third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/heap-profiler.h
rename to third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_extension.h b/third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_extension.h
rename to third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_extension_c.h b/third_party/tcmalloc/chromium/src/gperftools/malloc_extension_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_extension_c.h
rename to third_party/tcmalloc/chromium/src/gperftools/malloc_extension_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_hook.h b/third_party/tcmalloc/chromium/src/gperftools/malloc_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_hook.h
rename to third_party/tcmalloc/chromium/src/gperftools/malloc_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_hook_c.h b/third_party/tcmalloc/chromium/src/gperftools/malloc_hook_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/malloc_hook_c.h
rename to third_party/tcmalloc/chromium/src/gperftools/malloc_hook_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/profiler.h b/third_party/tcmalloc/chromium/src/gperftools/profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/profiler.h
rename to third_party/tcmalloc/chromium/src/gperftools/profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/stacktrace.h b/third_party/tcmalloc/chromium/src/gperftools/stacktrace.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/stacktrace.h
rename to third_party/tcmalloc/chromium/src/gperftools/stacktrace.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h b/third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h
rename to third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h.in b/third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/gperftools/tcmalloc.h.in
rename to third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-checker-bcad.cc b/third_party/tcmalloc/chromium/src/heap-checker-bcad.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-checker-bcad.cc
rename to third_party/tcmalloc/chromium/src/heap-checker-bcad.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-checker.cc b/third_party/tcmalloc/chromium/src/heap-checker.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-checker.cc
rename to third_party/tcmalloc/chromium/src/heap-checker.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-stats.h b/third_party/tcmalloc/chromium/src/heap-profile-stats.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-stats.h
rename to third_party/tcmalloc/chromium/src/heap-profile-stats.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-table.cc b/third_party/tcmalloc/chromium/src/heap-profile-table.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-table.cc
rename to third_party/tcmalloc/chromium/src/heap-profile-table.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-table.h b/third_party/tcmalloc/chromium/src/heap-profile-table.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profile-table.h
rename to third_party/tcmalloc/chromium/src/heap-profile-table.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profiler.cc b/third_party/tcmalloc/chromium/src/heap-profiler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/heap-profiler.cc
rename to third_party/tcmalloc/chromium/src/heap-profiler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/internal_logging.cc b/third_party/tcmalloc/chromium/src/internal_logging.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/internal_logging.cc
rename to third_party/tcmalloc/chromium/src/internal_logging.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/internal_logging.h b/third_party/tcmalloc/chromium/src/internal_logging.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/internal_logging.h
rename to third_party/tcmalloc/chromium/src/internal_logging.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override.h b/third_party/tcmalloc/chromium/src/libc_override.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override.h
rename to third_party/tcmalloc/chromium/src/libc_override.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_gcc_and_weak.h b/third_party/tcmalloc/chromium/src/libc_override_gcc_and_weak.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_gcc_and_weak.h
rename to third_party/tcmalloc/chromium/src/libc_override_gcc_and_weak.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_glibc.h b/third_party/tcmalloc/chromium/src/libc_override_glibc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_glibc.h
rename to third_party/tcmalloc/chromium/src/libc_override_glibc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_osx.h b/third_party/tcmalloc/chromium/src/libc_override_osx.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_osx.h
rename to third_party/tcmalloc/chromium/src/libc_override_osx.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_redefine.h b/third_party/tcmalloc/chromium/src/libc_override_redefine.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/libc_override_redefine.h
rename to third_party/tcmalloc/chromium/src/libc_override_redefine.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/linked_list.h b/third_party/tcmalloc/chromium/src/linked_list.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/linked_list.h
rename to third_party/tcmalloc/chromium/src/linked_list.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/linux_shadow_stacks.cc b/third_party/tcmalloc/chromium/src/linux_shadow_stacks.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/linux_shadow_stacks.cc
rename to third_party/tcmalloc/chromium/src/linux_shadow_stacks.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/linux_shadow_stacks.h b/third_party/tcmalloc/chromium/src/linux_shadow_stacks.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/linux_shadow_stacks.h
rename to third_party/tcmalloc/chromium/src/linux_shadow_stacks.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_extension.cc b/third_party/tcmalloc/chromium/src/malloc_extension.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_extension.cc
rename to third_party/tcmalloc/chromium/src/malloc_extension.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook-inl.h b/third_party/tcmalloc/chromium/src/malloc_hook-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook-inl.h
rename to third_party/tcmalloc/chromium/src/malloc_hook-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook.cc b/third_party/tcmalloc/chromium/src/malloc_hook.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook.cc
rename to third_party/tcmalloc/chromium/src/malloc_hook.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook_mmap_freebsd.h b/third_party/tcmalloc/chromium/src/malloc_hook_mmap_freebsd.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook_mmap_freebsd.h
rename to third_party/tcmalloc/chromium/src/malloc_hook_mmap_freebsd.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook_mmap_linux.h b/third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/malloc_hook_mmap_linux.h
rename to third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/maybe_threads.cc b/third_party/tcmalloc/chromium/src/maybe_threads.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/maybe_threads.cc
rename to third_party/tcmalloc/chromium/src/maybe_threads.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/maybe_threads.h b/third_party/tcmalloc/chromium/src/maybe_threads.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/maybe_threads.h
rename to third_party/tcmalloc/chromium/src/maybe_threads.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/memfs_malloc.cc b/third_party/tcmalloc/chromium/src/memfs_malloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/memfs_malloc.cc
rename to third_party/tcmalloc/chromium/src/memfs_malloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/memory_region_map.cc b/third_party/tcmalloc/chromium/src/memory_region_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/memory_region_map.cc
rename to third_party/tcmalloc/chromium/src/memory_region_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/memory_region_map.h b/third_party/tcmalloc/chromium/src/memory_region_map.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/memory_region_map.h
rename to third_party/tcmalloc/chromium/src/memory_region_map.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/packed-cache-inl.h b/third_party/tcmalloc/chromium/src/packed-cache-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/packed-cache-inl.h
rename to third_party/tcmalloc/chromium/src/packed-cache-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap.cc b/third_party/tcmalloc/chromium/src/page_heap.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap.cc
rename to third_party/tcmalloc/chromium/src/page_heap.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap.h b/third_party/tcmalloc/chromium/src/page_heap.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap.h
rename to third_party/tcmalloc/chromium/src/page_heap.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap_allocator.h b/third_party/tcmalloc/chromium/src/page_heap_allocator.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/page_heap_allocator.h
rename to third_party/tcmalloc/chromium/src/page_heap_allocator.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/pagemap.h b/third_party/tcmalloc/chromium/src/pagemap.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/pagemap.h
rename to third_party/tcmalloc/chromium/src/pagemap.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/pprof b/third_party/tcmalloc/chromium/src/pprof
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/pprof
rename to third_party/tcmalloc/chromium/src/pprof
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/profile-handler.cc b/third_party/tcmalloc/chromium/src/profile-handler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/profile-handler.cc
rename to third_party/tcmalloc/chromium/src/profile-handler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/profile-handler.h b/third_party/tcmalloc/chromium/src/profile-handler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/profile-handler.h
rename to third_party/tcmalloc/chromium/src/profile-handler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/profiledata.cc b/third_party/tcmalloc/chromium/src/profiledata.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/profiledata.cc
rename to third_party/tcmalloc/chromium/src/profiledata.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/profiledata.h b/third_party/tcmalloc/chromium/src/profiledata.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/profiledata.h
rename to third_party/tcmalloc/chromium/src/profiledata.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/profiler.cc b/third_party/tcmalloc/chromium/src/profiler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/profiler.cc
rename to third_party/tcmalloc/chromium/src/profiler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/raw_printer.cc b/third_party/tcmalloc/chromium/src/raw_printer.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/raw_printer.cc
rename to third_party/tcmalloc/chromium/src/raw_printer.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/raw_printer.h b/third_party/tcmalloc/chromium/src/raw_printer.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/raw_printer.h
rename to third_party/tcmalloc/chromium/src/raw_printer.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/sampler.cc b/third_party/tcmalloc/chromium/src/sampler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/sampler.cc
rename to third_party/tcmalloc/chromium/src/sampler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/sampler.h b/third_party/tcmalloc/chromium/src/sampler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/sampler.h
rename to third_party/tcmalloc/chromium/src/sampler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/solaris/libstdc++.la b/third_party/tcmalloc/chromium/src/solaris/libstdc++.la
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/solaris/libstdc++.la
rename to third_party/tcmalloc/chromium/src/solaris/libstdc++.la
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/span.cc b/third_party/tcmalloc/chromium/src/span.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/span.cc
rename to third_party/tcmalloc/chromium/src/span.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/span.h b/third_party/tcmalloc/chromium/src/span.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/span.h
rename to third_party/tcmalloc/chromium/src/span.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stack_trace_table.cc b/third_party/tcmalloc/chromium/src/stack_trace_table.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stack_trace_table.cc
rename to third_party/tcmalloc/chromium/src/stack_trace_table.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stack_trace_table.h b/third_party/tcmalloc/chromium/src/stack_trace_table.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stack_trace_table.h
rename to third_party/tcmalloc/chromium/src/stack_trace_table.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace.cc b/third_party/tcmalloc/chromium/src/stacktrace.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace.cc
rename to third_party/tcmalloc/chromium/src/stacktrace.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_android-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_android-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_android-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_android-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_arm-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_arm-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_arm-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_arm-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_config.h b/third_party/tcmalloc/chromium/src/stacktrace_config.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_config.h
rename to third_party/tcmalloc/chromium/src/stacktrace_config.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_generic-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_generic-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_generic-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_generic-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_libunwind-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_libunwind-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_libunwind-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_libunwind-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_mips-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_mips-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_mips-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_mips-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_powerpc-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_powerpc-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_powerpc-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_powerpc-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_win32-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_win32-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_win32-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_win32-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_with_context.cc b/third_party/tcmalloc/chromium/src/stacktrace_with_context.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_with_context.cc
rename to third_party/tcmalloc/chromium/src/stacktrace_with_context.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_x86-inl.h b/third_party/tcmalloc/chromium/src/stacktrace_x86-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/stacktrace_x86-inl.h
rename to third_party/tcmalloc/chromium/src/stacktrace_x86-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/static_vars.cc b/third_party/tcmalloc/chromium/src/static_vars.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/static_vars.cc
rename to third_party/tcmalloc/chromium/src/static_vars.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/static_vars.h b/third_party/tcmalloc/chromium/src/static_vars.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/static_vars.h
rename to third_party/tcmalloc/chromium/src/static_vars.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/symbolize.cc b/third_party/tcmalloc/chromium/src/symbolize.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/symbolize.cc
rename to third_party/tcmalloc/chromium/src/symbolize.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/symbolize.h b/third_party/tcmalloc/chromium/src/symbolize.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/symbolize.h
rename to third_party/tcmalloc/chromium/src/symbolize.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/system-alloc.cc b/third_party/tcmalloc/chromium/src/system-alloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/system-alloc.cc
rename to third_party/tcmalloc/chromium/src/system-alloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/system-alloc.h b/third_party/tcmalloc/chromium/src/system-alloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/system-alloc.h
rename to third_party/tcmalloc/chromium/src/system-alloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc.cc b/third_party/tcmalloc/chromium/src/tcmalloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc.cc
rename to third_party/tcmalloc/chromium/src/tcmalloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc.h b/third_party/tcmalloc/chromium/src/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc.h
rename to third_party/tcmalloc/chromium/src/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc_guard.h b/third_party/tcmalloc/chromium/src/tcmalloc_guard.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tcmalloc_guard.h
rename to third_party/tcmalloc/chromium/src/tcmalloc_guard.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/addressmap_unittest.cc b/third_party/tcmalloc/chromium/src/tests/addressmap_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/addressmap_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/addressmap_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/atomicops_unittest.cc b/third_party/tcmalloc/chromium/src/tests/atomicops_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/atomicops_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/atomicops_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/current_allocated_bytes_test.cc b/third_party/tcmalloc/chromium/src/tests/current_allocated_bytes_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/current_allocated_bytes_test.cc
rename to third_party/tcmalloc/chromium/src/tests/current_allocated_bytes_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/debugallocation_test.cc b/third_party/tcmalloc/chromium/src/tests/debugallocation_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/debugallocation_test.cc
rename to third_party/tcmalloc/chromium/src/tests/debugallocation_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/debugallocation_test.sh b/third_party/tcmalloc/chromium/src/tests/debugallocation_test.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/debugallocation_test.sh
rename to third_party/tcmalloc/chromium/src/tests/debugallocation_test.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/frag_unittest.cc b/third_party/tcmalloc/chromium/src/tests/frag_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/frag_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/frag_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/getpc_test.cc b/third_party/tcmalloc/chromium/src/tests/getpc_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/getpc_test.cc
rename to third_party/tcmalloc/chromium/src/tests/getpc_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker-death_unittest.sh b/third_party/tcmalloc/chromium/src/tests/heap-checker-death_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker-death_unittest.sh
rename to third_party/tcmalloc/chromium/src/tests/heap-checker-death_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker_unittest.cc b/third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker_unittest.sh b/third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-checker_unittest.sh
rename to third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-profiler_unittest.cc b/third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-profiler_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-profiler_unittest.sh b/third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/heap-profiler_unittest.sh
rename to third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/low_level_alloc_unittest.cc b/third_party/tcmalloc/chromium/src/tests/low_level_alloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/low_level_alloc_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/low_level_alloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_extension_c_test.c b/third_party/tcmalloc/chromium/src/tests/malloc_extension_c_test.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_extension_c_test.c
rename to third_party/tcmalloc/chromium/src/tests/malloc_extension_c_test.c
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_extension_test.cc b/third_party/tcmalloc/chromium/src/tests/malloc_extension_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_extension_test.cc
rename to third_party/tcmalloc/chromium/src/tests/malloc_extension_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_hook_test.cc b/third_party/tcmalloc/chromium/src/tests/malloc_hook_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/malloc_hook_test.cc
rename to third_party/tcmalloc/chromium/src/tests/malloc_hook_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/markidle_unittest.cc b/third_party/tcmalloc/chromium/src/tests/markidle_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/markidle_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/markidle_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/maybe_threads_unittest.sh b/third_party/tcmalloc/chromium/src/tests/maybe_threads_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/maybe_threads_unittest.sh
rename to third_party/tcmalloc/chromium/src/tests/maybe_threads_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/memalign_unittest.cc b/third_party/tcmalloc/chromium/src/tests/memalign_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/memalign_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/memalign_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/packed-cache_test.cc b/third_party/tcmalloc/chromium/src/tests/packed-cache_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/packed-cache_test.cc
rename to third_party/tcmalloc/chromium/src/tests/packed-cache_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/page_heap_test.cc b/third_party/tcmalloc/chromium/src/tests/page_heap_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/page_heap_test.cc
rename to third_party/tcmalloc/chromium/src/tests/page_heap_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/pagemap_unittest.cc b/third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/pagemap_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profile-handler_unittest.cc b/third_party/tcmalloc/chromium/src/tests/profile-handler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profile-handler_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/profile-handler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiledata_unittest.cc b/third_party/tcmalloc/chromium/src/tests/profiledata_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiledata_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/profiledata_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiler_unittest.cc b/third_party/tcmalloc/chromium/src/tests/profiler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiler_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/profiler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiler_unittest.sh b/third_party/tcmalloc/chromium/src/tests/profiler_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/profiler_unittest.sh
rename to third_party/tcmalloc/chromium/src/tests/profiler_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/raw_printer_test.cc b/third_party/tcmalloc/chromium/src/tests/raw_printer_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/raw_printer_test.cc
rename to third_party/tcmalloc/chromium/src/tests/raw_printer_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/realloc_unittest.cc b/third_party/tcmalloc/chromium/src/tests/realloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/realloc_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/realloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampler_test.cc b/third_party/tcmalloc/chromium/src/tests/sampler_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampler_test.cc
rename to third_party/tcmalloc/chromium/src/tests/sampler_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampling_test.cc b/third_party/tcmalloc/chromium/src/tests/sampling_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampling_test.cc
rename to third_party/tcmalloc/chromium/src/tests/sampling_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampling_test.sh b/third_party/tcmalloc/chromium/src/tests/sampling_test.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/sampling_test.sh
rename to third_party/tcmalloc/chromium/src/tests/sampling_test.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/simple_compat_test.cc b/third_party/tcmalloc/chromium/src/tests/simple_compat_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/simple_compat_test.cc
rename to third_party/tcmalloc/chromium/src/tests/simple_compat_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/stack_trace_table_test.cc b/third_party/tcmalloc/chromium/src/tests/stack_trace_table_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/stack_trace_table_test.cc
rename to third_party/tcmalloc/chromium/src/tests/stack_trace_table_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/stacktrace_unittest.cc b/third_party/tcmalloc/chromium/src/tests/stacktrace_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/stacktrace_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/stacktrace_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/system-alloc_unittest.cc b/third_party/tcmalloc/chromium/src/tests/system-alloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/system-alloc_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/system-alloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/tcmalloc_large_unittest.cc b/third_party/tcmalloc/chromium/src/tests/tcmalloc_large_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/tcmalloc_large_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/tcmalloc_large_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/tcmalloc_unittest.cc b/third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/tcmalloc_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/testutil.cc b/third_party/tcmalloc/chromium/src/tests/testutil.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/testutil.cc
rename to third_party/tcmalloc/chromium/src/tests/testutil.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/testutil.h b/third_party/tcmalloc/chromium/src/tests/testutil.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/testutil.h
rename to third_party/tcmalloc/chromium/src/tests/testutil.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/tests/thread_dealloc_unittest.cc b/third_party/tcmalloc/chromium/src/tests/thread_dealloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/tests/thread_dealloc_unittest.cc
rename to third_party/tcmalloc/chromium/src/tests/thread_dealloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/thread_cache.cc b/third_party/tcmalloc/chromium/src/thread_cache.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/thread_cache.cc
rename to third_party/tcmalloc/chromium/src/thread_cache.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/thread_cache.h b/third_party/tcmalloc/chromium/src/thread_cache.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/thread_cache.h
rename to third_party/tcmalloc/chromium/src/thread_cache.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/TODO b/third_party/tcmalloc/chromium/src/windows/TODO
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/TODO
rename to third_party/tcmalloc/chromium/src/windows/TODO
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/addr2line-pdb.c b/third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/addr2line-pdb.c
rename to third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/auto_testing_hook.h b/third_party/tcmalloc/chromium/src/windows/auto_testing_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/auto_testing_hook.h
rename to third_party/tcmalloc/chromium/src/windows/auto_testing_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/config.h b/third_party/tcmalloc/chromium/src/windows/config.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/config.h
rename to third_party/tcmalloc/chromium/src/windows/config.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/get_mangled_names.cc b/third_party/tcmalloc/chromium/src/windows/get_mangled_names.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/get_mangled_names.cc
rename to third_party/tcmalloc/chromium/src/windows/get_mangled_names.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/google/tcmalloc.h b/third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/google/tcmalloc.h
rename to third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/gperftools/tcmalloc.h b/third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/gperftools/tcmalloc.h
rename to third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/gperftools/tcmalloc.h.in b/third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/gperftools/tcmalloc.h.in
rename to third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/ia32_modrm_map.cc b/third_party/tcmalloc/chromium/src/windows/ia32_modrm_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/ia32_modrm_map.cc
rename to third_party/tcmalloc/chromium/src/windows/ia32_modrm_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/ia32_opcode_map.cc b/third_party/tcmalloc/chromium/src/windows/ia32_opcode_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/ia32_opcode_map.cc
rename to third_party/tcmalloc/chromium/src/windows/ia32_opcode_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mingw.h b/third_party/tcmalloc/chromium/src/windows/mingw.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mingw.h
rename to third_party/tcmalloc/chromium/src/windows/mingw.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler.cc b/third_party/tcmalloc/chromium/src/windows/mini_disassembler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler.cc
rename to third_party/tcmalloc/chromium/src/windows/mini_disassembler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler.h b/third_party/tcmalloc/chromium/src/windows/mini_disassembler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler.h
rename to third_party/tcmalloc/chromium/src/windows/mini_disassembler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler_types.h b/third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/mini_disassembler_types.h
rename to third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/nm-pdb.c b/third_party/tcmalloc/chromium/src/windows/nm-pdb.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/nm-pdb.c
rename to third_party/tcmalloc/chromium/src/windows/nm-pdb.c
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/override_functions.cc b/third_party/tcmalloc/chromium/src/windows/override_functions.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/override_functions.cc
rename to third_party/tcmalloc/chromium/src/windows/override_functions.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/patch_functions.cc b/third_party/tcmalloc/chromium/src/windows/patch_functions.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/patch_functions.cc
rename to third_party/tcmalloc/chromium/src/windows/patch_functions.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/port.cc b/third_party/tcmalloc/chromium/src/windows/port.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/port.cc
rename to third_party/tcmalloc/chromium/src/windows/port.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/port.h b/third_party/tcmalloc/chromium/src/windows/port.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/port.h
rename to third_party/tcmalloc/chromium/src/windows/port.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher.cc b/third_party/tcmalloc/chromium/src/windows/preamble_patcher.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher.cc
rename to third_party/tcmalloc/chromium/src/windows/preamble_patcher.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher.h b/third_party/tcmalloc/chromium/src/windows/preamble_patcher.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher.h
rename to third_party/tcmalloc/chromium/src/windows/preamble_patcher.h
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher_test.cc b/third_party/tcmalloc/chromium/src/windows/preamble_patcher_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher_test.cc
rename to third_party/tcmalloc/chromium/src/windows/preamble_patcher_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher_with_stub.cc b/third_party/tcmalloc/chromium/src/windows/preamble_patcher_with_stub.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/preamble_patcher_with_stub.cc
rename to third_party/tcmalloc/chromium/src/windows/preamble_patcher_with_stub.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/windows/shortproc.asm b/third_party/tcmalloc/chromium/src/windows/shortproc.asm
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/chromium/src/windows/shortproc.asm
rename to third_party/tcmalloc/chromium/src/windows/shortproc.asm
diff --git a/third_party/tcmalloc/gperftools-2.0/chromium/src/config.h b/third_party/tcmalloc/gperftools-2.0/chromium/src/config.h
deleted file mode 100644
index 66bacfa..0000000
--- a/third_party/tcmalloc/gperftools-2.0/chromium/src/config.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONFIG_H_
-
-#include "build/build_config.h"
-
-#if defined(OS_WIN)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config_win.h"
-#elif defined(OS_ANDROID)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config_android.h"
-#elif defined(OS_LINUX)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config_linux.h"
-#elif defined(OS_FREEBSD)
-#include "third_party/tcmalloc/gperftools-2.0/chromium/src/config_freebsd.h"
-#endif
-
-#endif // CONFIG_H_
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/AUTHORS b/third_party/tcmalloc/vendor/AUTHORS
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/AUTHORS
rename to third_party/tcmalloc/vendor/AUTHORS
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/COPYING b/third_party/tcmalloc/vendor/COPYING
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/COPYING
rename to third_party/tcmalloc/vendor/COPYING
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/ChangeLog b/third_party/tcmalloc/vendor/ChangeLog
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/ChangeLog
rename to third_party/tcmalloc/vendor/ChangeLog
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/INSTALL b/third_party/tcmalloc/vendor/INSTALL
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/INSTALL
rename to third_party/tcmalloc/vendor/INSTALL
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/Makefile.am b/third_party/tcmalloc/vendor/Makefile.am
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/Makefile.am
rename to third_party/tcmalloc/vendor/Makefile.am
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/Makefile.in b/third_party/tcmalloc/vendor/Makefile.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/Makefile.in
rename to third_party/tcmalloc/vendor/Makefile.in
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/NEWS b/third_party/tcmalloc/vendor/NEWS
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/NEWS
rename to third_party/tcmalloc/vendor/NEWS
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/README b/third_party/tcmalloc/vendor/README
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/README
rename to third_party/tcmalloc/vendor/README
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/README_windows.txt b/third_party/tcmalloc/vendor/README_windows.txt
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/README_windows.txt
rename to third_party/tcmalloc/vendor/README_windows.txt
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/TODO b/third_party/tcmalloc/vendor/TODO
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/TODO
rename to third_party/tcmalloc/vendor/TODO
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/aclocal.m4 b/third_party/tcmalloc/vendor/aclocal.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/aclocal.m4
rename to third_party/tcmalloc/vendor/aclocal.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/autogen.sh b/third_party/tcmalloc/vendor/autogen.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/autogen.sh
rename to third_party/tcmalloc/vendor/autogen.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/compile b/third_party/tcmalloc/vendor/compile
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/compile
rename to third_party/tcmalloc/vendor/compile
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/config.guess b/third_party/tcmalloc/vendor/config.guess
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/config.guess
rename to third_party/tcmalloc/vendor/config.guess
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/config.sub b/third_party/tcmalloc/vendor/config.sub
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/config.sub
rename to third_party/tcmalloc/vendor/config.sub
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/configure b/third_party/tcmalloc/vendor/configure
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/configure
rename to third_party/tcmalloc/vendor/configure
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/configure.ac b/third_party/tcmalloc/vendor/configure.ac
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/configure.ac
rename to third_party/tcmalloc/vendor/configure.ac
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/depcomp b/third_party/tcmalloc/vendor/depcomp
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/depcomp
rename to third_party/tcmalloc/vendor/depcomp
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/cpuprofile-fileformat.html b/third_party/tcmalloc/vendor/doc/cpuprofile-fileformat.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/cpuprofile-fileformat.html
rename to third_party/tcmalloc/vendor/doc/cpuprofile-fileformat.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/cpuprofile.html b/third_party/tcmalloc/vendor/doc/cpuprofile.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/cpuprofile.html
rename to third_party/tcmalloc/vendor/doc/cpuprofile.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/designstyle.css b/third_party/tcmalloc/vendor/doc/designstyle.css
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/designstyle.css
rename to third_party/tcmalloc/vendor/doc/designstyle.css
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/heap-example1.png b/third_party/tcmalloc/vendor/doc/heap-example1.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/heap-example1.png
rename to third_party/tcmalloc/vendor/doc/heap-example1.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/heap_checker.html b/third_party/tcmalloc/vendor/doc/heap_checker.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/heap_checker.html
rename to third_party/tcmalloc/vendor/doc/heap_checker.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/heapprofile.html b/third_party/tcmalloc/vendor/doc/heapprofile.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/heapprofile.html
rename to third_party/tcmalloc/vendor/doc/heapprofile.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/index.html b/third_party/tcmalloc/vendor/doc/index.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/index.html
rename to third_party/tcmalloc/vendor/doc/index.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/overview.dot b/third_party/tcmalloc/vendor/doc/overview.dot
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/overview.dot
rename to third_party/tcmalloc/vendor/doc/overview.dot
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/overview.gif b/third_party/tcmalloc/vendor/doc/overview.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/overview.gif
rename to third_party/tcmalloc/vendor/doc/overview.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pageheap.dot b/third_party/tcmalloc/vendor/doc/pageheap.dot
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pageheap.dot
rename to third_party/tcmalloc/vendor/doc/pageheap.dot
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pageheap.gif b/third_party/tcmalloc/vendor/doc/pageheap.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pageheap.gif
rename to third_party/tcmalloc/vendor/doc/pageheap.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-test-big.gif b/third_party/tcmalloc/vendor/doc/pprof-test-big.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-test-big.gif
rename to third_party/tcmalloc/vendor/doc/pprof-test-big.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-test.gif b/third_party/tcmalloc/vendor/doc/pprof-test.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-test.gif
rename to third_party/tcmalloc/vendor/doc/pprof-test.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-vsnprintf-big.gif b/third_party/tcmalloc/vendor/doc/pprof-vsnprintf-big.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-vsnprintf-big.gif
rename to third_party/tcmalloc/vendor/doc/pprof-vsnprintf-big.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-vsnprintf.gif b/third_party/tcmalloc/vendor/doc/pprof-vsnprintf.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof-vsnprintf.gif
rename to third_party/tcmalloc/vendor/doc/pprof-vsnprintf.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof.1 b/third_party/tcmalloc/vendor/doc/pprof.1
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof.1
rename to third_party/tcmalloc/vendor/doc/pprof.1
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof.see_also b/third_party/tcmalloc/vendor/doc/pprof.see_also
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof.see_also
rename to third_party/tcmalloc/vendor/doc/pprof.see_also
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof_remote_servers.html b/third_party/tcmalloc/vendor/doc/pprof_remote_servers.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/pprof_remote_servers.html
rename to third_party/tcmalloc/vendor/doc/pprof_remote_servers.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/spanmap.dot b/third_party/tcmalloc/vendor/doc/spanmap.dot
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/spanmap.dot
rename to third_party/tcmalloc/vendor/doc/spanmap.dot
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/spanmap.gif b/third_party/tcmalloc/vendor/doc/spanmap.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/spanmap.gif
rename to third_party/tcmalloc/vendor/doc/spanmap.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/t-test1.times.txt b/third_party/tcmalloc/vendor/doc/t-test1.times.txt
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/t-test1.times.txt
rename to third_party/tcmalloc/vendor/doc/t-test1.times.txt
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.1024.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.1024.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.1024.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.1024.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.128.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.128.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.128.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.128.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.131072.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.131072.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.131072.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.131072.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.16384.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.16384.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.16384.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.16384.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.2048.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.2048.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.2048.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.2048.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.256.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.256.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.256.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.256.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.32768.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.32768.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.32768.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.32768.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.4096.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.4096.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.4096.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.4096.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.512.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.512.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.512.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.512.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.64.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.64.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.64.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.64.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.65536.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.65536.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.65536.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.65536.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.8192.bytes.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.8192.bytes.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspercpusec.vs.threads.8192.bytes.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspercpusec.vs.threads.8192.bytes.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.1.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.1.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.1.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.1.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.12.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.12.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.12.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.12.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.16.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.16.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.16.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.16.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.2.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.2.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.2.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.2.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.20.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.20.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.20.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.20.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.3.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.3.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.3.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.3.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.4.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.4.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.4.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.4.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.5.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.5.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.5.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.5.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.8.threads.png b/third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.8.threads.png
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc-opspersec.vs.size.8.threads.png
rename to third_party/tcmalloc/vendor/doc/tcmalloc-opspersec.vs.size.8.threads.png
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc.html b/third_party/tcmalloc/vendor/doc/tcmalloc.html
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/tcmalloc.html
rename to third_party/tcmalloc/vendor/doc/tcmalloc.html
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/threadheap.dot b/third_party/tcmalloc/vendor/doc/threadheap.dot
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/threadheap.dot
rename to third_party/tcmalloc/vendor/doc/threadheap.dot
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/doc/threadheap.gif b/third_party/tcmalloc/vendor/doc/threadheap.gif
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/doc/threadheap.gif
rename to third_party/tcmalloc/vendor/doc/threadheap.gif
Binary files differ
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/install-sh b/third_party/tcmalloc/vendor/install-sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/install-sh
rename to third_party/tcmalloc/vendor/install-sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/ltmain.sh b/third_party/tcmalloc/vendor/ltmain.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/ltmain.sh
rename to third_party/tcmalloc/vendor/ltmain.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/ac_have_attribute.m4 b/third_party/tcmalloc/vendor/m4/ac_have_attribute.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/ac_have_attribute.m4
rename to third_party/tcmalloc/vendor/m4/ac_have_attribute.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/acx_nanosleep.m4 b/third_party/tcmalloc/vendor/m4/acx_nanosleep.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/acx_nanosleep.m4
rename to third_party/tcmalloc/vendor/m4/acx_nanosleep.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/acx_pthread.m4 b/third_party/tcmalloc/vendor/m4/acx_pthread.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/acx_pthread.m4
rename to third_party/tcmalloc/vendor/m4/acx_pthread.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/compiler_characteristics.m4 b/third_party/tcmalloc/vendor/m4/compiler_characteristics.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/compiler_characteristics.m4
rename to third_party/tcmalloc/vendor/m4/compiler_characteristics.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/install_prefix.m4 b/third_party/tcmalloc/vendor/m4/install_prefix.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/install_prefix.m4
rename to third_party/tcmalloc/vendor/m4/install_prefix.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/libtool.m4 b/third_party/tcmalloc/vendor/m4/libtool.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/libtool.m4
rename to third_party/tcmalloc/vendor/m4/libtool.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/ltoptions.m4 b/third_party/tcmalloc/vendor/m4/ltoptions.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/ltoptions.m4
rename to third_party/tcmalloc/vendor/m4/ltoptions.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/ltsugar.m4 b/third_party/tcmalloc/vendor/m4/ltsugar.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/ltsugar.m4
rename to third_party/tcmalloc/vendor/m4/ltsugar.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/ltversion.m4 b/third_party/tcmalloc/vendor/m4/ltversion.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/ltversion.m4
rename to third_party/tcmalloc/vendor/m4/ltversion.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/lt~obsolete.m4 b/third_party/tcmalloc/vendor/m4/lt~obsolete.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/lt~obsolete.m4
rename to third_party/tcmalloc/vendor/m4/lt~obsolete.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/namespaces.m4 b/third_party/tcmalloc/vendor/m4/namespaces.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/namespaces.m4
rename to third_party/tcmalloc/vendor/m4/namespaces.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/pc_from_ucontext.m4 b/third_party/tcmalloc/vendor/m4/pc_from_ucontext.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/pc_from_ucontext.m4
rename to third_party/tcmalloc/vendor/m4/pc_from_ucontext.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/program_invocation_name.m4 b/third_party/tcmalloc/vendor/m4/program_invocation_name.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/program_invocation_name.m4
rename to third_party/tcmalloc/vendor/m4/program_invocation_name.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/m4/stl_namespace.m4 b/third_party/tcmalloc/vendor/m4/stl_namespace.m4
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/m4/stl_namespace.m4
rename to third_party/tcmalloc/vendor/m4/stl_namespace.m4
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/missing b/third_party/tcmalloc/vendor/missing
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/missing
rename to third_party/tcmalloc/vendor/missing
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/mkinstalldirs b/third_party/tcmalloc/vendor/mkinstalldirs
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/mkinstalldirs
rename to third_party/tcmalloc/vendor/mkinstalldirs
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb.sh b/third_party/tcmalloc/vendor/packages/deb.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb.sh
rename to third_party/tcmalloc/vendor/packages/deb.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/README b/third_party/tcmalloc/vendor/packages/deb/README
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/README
rename to third_party/tcmalloc/vendor/packages/deb/README
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/changelog b/third_party/tcmalloc/vendor/packages/deb/changelog
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/changelog
rename to third_party/tcmalloc/vendor/packages/deb/changelog
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/compat b/third_party/tcmalloc/vendor/packages/deb/compat
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/compat
rename to third_party/tcmalloc/vendor/packages/deb/compat
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/control b/third_party/tcmalloc/vendor/packages/deb/control
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/control
rename to third_party/tcmalloc/vendor/packages/deb/control
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/copyright b/third_party/tcmalloc/vendor/packages/deb/copyright
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/copyright
rename to third_party/tcmalloc/vendor/packages/deb/copyright
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/docs b/third_party/tcmalloc/vendor/packages/deb/docs
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/docs
rename to third_party/tcmalloc/vendor/packages/deb/docs
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools-dev.dirs b/third_party/tcmalloc/vendor/packages/deb/libgperftools-dev.dirs
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools-dev.dirs
rename to third_party/tcmalloc/vendor/packages/deb/libgperftools-dev.dirs
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools-dev.install b/third_party/tcmalloc/vendor/packages/deb/libgperftools-dev.install
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools-dev.install
rename to third_party/tcmalloc/vendor/packages/deb/libgperftools-dev.install
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.dirs b/third_party/tcmalloc/vendor/packages/deb/libgperftools0.dirs
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.dirs
rename to third_party/tcmalloc/vendor/packages/deb/libgperftools0.dirs
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.install b/third_party/tcmalloc/vendor/packages/deb/libgperftools0.install
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.install
rename to third_party/tcmalloc/vendor/packages/deb/libgperftools0.install
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.manpages b/third_party/tcmalloc/vendor/packages/deb/libgperftools0.manpages
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/libgperftools0.manpages
rename to third_party/tcmalloc/vendor/packages/deb/libgperftools0.manpages
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/rules b/third_party/tcmalloc/vendor/packages/deb/rules
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/deb/rules
rename to third_party/tcmalloc/vendor/packages/deb/rules
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/rpm.sh b/third_party/tcmalloc/vendor/packages/rpm.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/rpm.sh
rename to third_party/tcmalloc/vendor/packages/rpm.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/packages/rpm/rpm.spec b/third_party/tcmalloc/vendor/packages/rpm/rpm.spec
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/packages/rpm/rpm.spec
rename to third_party/tcmalloc/vendor/packages/rpm/rpm.spec
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/addressmap-inl.h b/third_party/tcmalloc/vendor/src/addressmap-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/addressmap-inl.h
rename to third_party/tcmalloc/vendor/src/addressmap-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/arm_instruction_set_select.h b/third_party/tcmalloc/vendor/src/base/arm_instruction_set_select.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/arm_instruction_set_select.h
rename to third_party/tcmalloc/vendor/src/base/arm_instruction_set_select.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-arm-generic.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-arm-generic.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-arm-generic.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-arm-generic.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-arm-v6plus.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-arm-v6plus.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-arm-v6plus.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-arm-v6plus.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-linuxppc.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-linuxppc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-linuxppc.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-linuxppc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-macosx.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-macosx.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-macosx.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-macosx.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-windows.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-windows.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-windows.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-windows.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-x86.cc b/third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-x86.cc
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-x86.h b/third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops-internals-x86.h
rename to third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops.h b/third_party/tcmalloc/vendor/src/base/atomicops.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/atomicops.h
rename to third_party/tcmalloc/vendor/src/base/atomicops.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/basictypes.h b/third_party/tcmalloc/vendor/src/base/basictypes.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/basictypes.h
rename to third_party/tcmalloc/vendor/src/base/basictypes.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/commandlineflags.h b/third_party/tcmalloc/vendor/src/base/commandlineflags.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/commandlineflags.h
rename to third_party/tcmalloc/vendor/src/base/commandlineflags.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/cycleclock.h b/third_party/tcmalloc/vendor/src/base/cycleclock.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/cycleclock.h
rename to third_party/tcmalloc/vendor/src/base/cycleclock.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/dynamic_annotations.c b/third_party/tcmalloc/vendor/src/base/dynamic_annotations.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/dynamic_annotations.c
rename to third_party/tcmalloc/vendor/src/base/dynamic_annotations.c
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/dynamic_annotations.h b/third_party/tcmalloc/vendor/src/base/dynamic_annotations.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/dynamic_annotations.h
rename to third_party/tcmalloc/vendor/src/base/dynamic_annotations.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/elf_mem_image.cc b/third_party/tcmalloc/vendor/src/base/elf_mem_image.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/elf_mem_image.cc
rename to third_party/tcmalloc/vendor/src/base/elf_mem_image.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/elf_mem_image.h b/third_party/tcmalloc/vendor/src/base/elf_mem_image.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/elf_mem_image.h
rename to third_party/tcmalloc/vendor/src/base/elf_mem_image.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/elfcore.h b/third_party/tcmalloc/vendor/src/base/elfcore.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/elfcore.h
rename to third_party/tcmalloc/vendor/src/base/elfcore.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/googleinit.h b/third_party/tcmalloc/vendor/src/base/googleinit.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/googleinit.h
rename to third_party/tcmalloc/vendor/src/base/googleinit.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/linux_syscall_support.h b/third_party/tcmalloc/vendor/src/base/linux_syscall_support.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/linux_syscall_support.h
rename to third_party/tcmalloc/vendor/src/base/linux_syscall_support.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/linuxthreads.cc b/third_party/tcmalloc/vendor/src/base/linuxthreads.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/linuxthreads.cc
rename to third_party/tcmalloc/vendor/src/base/linuxthreads.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/linuxthreads.h b/third_party/tcmalloc/vendor/src/base/linuxthreads.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/linuxthreads.h
rename to third_party/tcmalloc/vendor/src/base/linuxthreads.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/logging.cc b/third_party/tcmalloc/vendor/src/base/logging.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/logging.cc
rename to third_party/tcmalloc/vendor/src/base/logging.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/logging.h b/third_party/tcmalloc/vendor/src/base/logging.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/logging.h
rename to third_party/tcmalloc/vendor/src/base/logging.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/low_level_alloc.cc b/third_party/tcmalloc/vendor/src/base/low_level_alloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/low_level_alloc.cc
rename to third_party/tcmalloc/vendor/src/base/low_level_alloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/low_level_alloc.h b/third_party/tcmalloc/vendor/src/base/low_level_alloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/low_level_alloc.h
rename to third_party/tcmalloc/vendor/src/base/low_level_alloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/simple_mutex.h b/third_party/tcmalloc/vendor/src/base/simple_mutex.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/simple_mutex.h
rename to third_party/tcmalloc/vendor/src/base/simple_mutex.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock.cc b/third_party/tcmalloc/vendor/src/base/spinlock.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock.cc
rename to third_party/tcmalloc/vendor/src/base/spinlock.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock.h b/third_party/tcmalloc/vendor/src/base/spinlock.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock.h
rename to third_party/tcmalloc/vendor/src/base/spinlock.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_internal.cc b/third_party/tcmalloc/vendor/src/base/spinlock_internal.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_internal.cc
rename to third_party/tcmalloc/vendor/src/base/spinlock_internal.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_internal.h b/third_party/tcmalloc/vendor/src/base/spinlock_internal.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_internal.h
rename to third_party/tcmalloc/vendor/src/base/spinlock_internal.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_linux-inl.h b/third_party/tcmalloc/vendor/src/base/spinlock_linux-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_linux-inl.h
rename to third_party/tcmalloc/vendor/src/base/spinlock_linux-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_posix-inl.h b/third_party/tcmalloc/vendor/src/base/spinlock_posix-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_posix-inl.h
rename to third_party/tcmalloc/vendor/src/base/spinlock_posix-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_win32-inl.h b/third_party/tcmalloc/vendor/src/base/spinlock_win32-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/spinlock_win32-inl.h
rename to third_party/tcmalloc/vendor/src/base/spinlock_win32-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/stl_allocator.h b/third_party/tcmalloc/vendor/src/base/stl_allocator.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/stl_allocator.h
rename to third_party/tcmalloc/vendor/src/base/stl_allocator.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/synchronization_profiling.h b/third_party/tcmalloc/vendor/src/base/synchronization_profiling.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/synchronization_profiling.h
rename to third_party/tcmalloc/vendor/src/base/synchronization_profiling.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/sysinfo.cc b/third_party/tcmalloc/vendor/src/base/sysinfo.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/sysinfo.cc
rename to third_party/tcmalloc/vendor/src/base/sysinfo.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/sysinfo.h b/third_party/tcmalloc/vendor/src/base/sysinfo.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/sysinfo.h
rename to third_party/tcmalloc/vendor/src/base/sysinfo.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_annotations.h b/third_party/tcmalloc/vendor/src/base/thread_annotations.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_annotations.h
rename to third_party/tcmalloc/vendor/src/base/thread_annotations.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_lister.c b/third_party/tcmalloc/vendor/src/base/thread_lister.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_lister.c
rename to third_party/tcmalloc/vendor/src/base/thread_lister.c
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_lister.h b/third_party/tcmalloc/vendor/src/base/thread_lister.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/thread_lister.h
rename to third_party/tcmalloc/vendor/src/base/thread_lister.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/vdso_support.cc b/third_party/tcmalloc/vendor/src/base/vdso_support.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/vdso_support.cc
rename to third_party/tcmalloc/vendor/src/base/vdso_support.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/base/vdso_support.h b/third_party/tcmalloc/vendor/src/base/vdso_support.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/base/vdso_support.h
rename to third_party/tcmalloc/vendor/src/base/vdso_support.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/central_freelist.cc b/third_party/tcmalloc/vendor/src/central_freelist.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/central_freelist.cc
rename to third_party/tcmalloc/vendor/src/central_freelist.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/central_freelist.h b/third_party/tcmalloc/vendor/src/central_freelist.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/central_freelist.h
rename to third_party/tcmalloc/vendor/src/central_freelist.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/common.cc b/third_party/tcmalloc/vendor/src/common.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/common.cc
rename to third_party/tcmalloc/vendor/src/common.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/common.h b/third_party/tcmalloc/vendor/src/common.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/common.h
rename to third_party/tcmalloc/vendor/src/common.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/config.h.in b/third_party/tcmalloc/vendor/src/config.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/config.h.in
rename to third_party/tcmalloc/vendor/src/config.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/config_for_unittests.h b/third_party/tcmalloc/vendor/src/config_for_unittests.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/config_for_unittests.h
rename to third_party/tcmalloc/vendor/src/config_for_unittests.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/debugallocation.cc b/third_party/tcmalloc/vendor/src/debugallocation.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/debugallocation.cc
rename to third_party/tcmalloc/vendor/src/debugallocation.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/getpc.h b/third_party/tcmalloc/vendor/src/getpc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/getpc.h
rename to third_party/tcmalloc/vendor/src/getpc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/heap-checker.h b/third_party/tcmalloc/vendor/src/google/heap-checker.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/heap-checker.h
rename to third_party/tcmalloc/vendor/src/google/heap-checker.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/heap-profiler.h b/third_party/tcmalloc/vendor/src/google/heap-profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/heap-profiler.h
rename to third_party/tcmalloc/vendor/src/google/heap-profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_extension.h b/third_party/tcmalloc/vendor/src/google/malloc_extension.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_extension.h
rename to third_party/tcmalloc/vendor/src/google/malloc_extension.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_extension_c.h b/third_party/tcmalloc/vendor/src/google/malloc_extension_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_extension_c.h
rename to third_party/tcmalloc/vendor/src/google/malloc_extension_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_hook.h b/third_party/tcmalloc/vendor/src/google/malloc_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_hook.h
rename to third_party/tcmalloc/vendor/src/google/malloc_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_hook_c.h b/third_party/tcmalloc/vendor/src/google/malloc_hook_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/malloc_hook_c.h
rename to third_party/tcmalloc/vendor/src/google/malloc_hook_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/profiler.h b/third_party/tcmalloc/vendor/src/google/profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/profiler.h
rename to third_party/tcmalloc/vendor/src/google/profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/stacktrace.h b/third_party/tcmalloc/vendor/src/google/stacktrace.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/stacktrace.h
rename to third_party/tcmalloc/vendor/src/google/stacktrace.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/google/tcmalloc.h b/third_party/tcmalloc/vendor/src/google/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/google/tcmalloc.h
rename to third_party/tcmalloc/vendor/src/google/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/heap-checker.h b/third_party/tcmalloc/vendor/src/gperftools/heap-checker.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/heap-checker.h
rename to third_party/tcmalloc/vendor/src/gperftools/heap-checker.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/heap-profiler.h b/third_party/tcmalloc/vendor/src/gperftools/heap-profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/heap-profiler.h
rename to third_party/tcmalloc/vendor/src/gperftools/heap-profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_extension.h b/third_party/tcmalloc/vendor/src/gperftools/malloc_extension.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_extension.h
rename to third_party/tcmalloc/vendor/src/gperftools/malloc_extension.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_extension_c.h b/third_party/tcmalloc/vendor/src/gperftools/malloc_extension_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_extension_c.h
rename to third_party/tcmalloc/vendor/src/gperftools/malloc_extension_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_hook.h b/third_party/tcmalloc/vendor/src/gperftools/malloc_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_hook.h
rename to third_party/tcmalloc/vendor/src/gperftools/malloc_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_hook_c.h b/third_party/tcmalloc/vendor/src/gperftools/malloc_hook_c.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/malloc_hook_c.h
rename to third_party/tcmalloc/vendor/src/gperftools/malloc_hook_c.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/profiler.h b/third_party/tcmalloc/vendor/src/gperftools/profiler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/profiler.h
rename to third_party/tcmalloc/vendor/src/gperftools/profiler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/stacktrace.h b/third_party/tcmalloc/vendor/src/gperftools/stacktrace.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/stacktrace.h
rename to third_party/tcmalloc/vendor/src/gperftools/stacktrace.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/tcmalloc.h.in b/third_party/tcmalloc/vendor/src/gperftools/tcmalloc.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/gperftools/tcmalloc.h.in
rename to third_party/tcmalloc/vendor/src/gperftools/tcmalloc.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/heap-checker-bcad.cc b/third_party/tcmalloc/vendor/src/heap-checker-bcad.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/heap-checker-bcad.cc
rename to third_party/tcmalloc/vendor/src/heap-checker-bcad.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/heap-checker.cc b/third_party/tcmalloc/vendor/src/heap-checker.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/heap-checker.cc
rename to third_party/tcmalloc/vendor/src/heap-checker.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profile-table.cc b/third_party/tcmalloc/vendor/src/heap-profile-table.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profile-table.cc
rename to third_party/tcmalloc/vendor/src/heap-profile-table.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profile-table.h b/third_party/tcmalloc/vendor/src/heap-profile-table.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profile-table.h
rename to third_party/tcmalloc/vendor/src/heap-profile-table.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profiler.cc b/third_party/tcmalloc/vendor/src/heap-profiler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/heap-profiler.cc
rename to third_party/tcmalloc/vendor/src/heap-profiler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/internal_logging.cc b/third_party/tcmalloc/vendor/src/internal_logging.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/internal_logging.cc
rename to third_party/tcmalloc/vendor/src/internal_logging.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/internal_logging.h b/third_party/tcmalloc/vendor/src/internal_logging.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/internal_logging.h
rename to third_party/tcmalloc/vendor/src/internal_logging.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override.h b/third_party/tcmalloc/vendor/src/libc_override.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override.h
rename to third_party/tcmalloc/vendor/src/libc_override.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_gcc_and_weak.h b/third_party/tcmalloc/vendor/src/libc_override_gcc_and_weak.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_gcc_and_weak.h
rename to third_party/tcmalloc/vendor/src/libc_override_gcc_and_weak.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_glibc.h b/third_party/tcmalloc/vendor/src/libc_override_glibc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_glibc.h
rename to third_party/tcmalloc/vendor/src/libc_override_glibc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_osx.h b/third_party/tcmalloc/vendor/src/libc_override_osx.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_osx.h
rename to third_party/tcmalloc/vendor/src/libc_override_osx.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_redefine.h b/third_party/tcmalloc/vendor/src/libc_override_redefine.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/libc_override_redefine.h
rename to third_party/tcmalloc/vendor/src/libc_override_redefine.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/linked_list.h b/third_party/tcmalloc/vendor/src/linked_list.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/linked_list.h
rename to third_party/tcmalloc/vendor/src/linked_list.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_extension.cc b/third_party/tcmalloc/vendor/src/malloc_extension.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_extension.cc
rename to third_party/tcmalloc/vendor/src/malloc_extension.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook-inl.h b/third_party/tcmalloc/vendor/src/malloc_hook-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook-inl.h
rename to third_party/tcmalloc/vendor/src/malloc_hook-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook.cc b/third_party/tcmalloc/vendor/src/malloc_hook.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook.cc
rename to third_party/tcmalloc/vendor/src/malloc_hook.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook_mmap_freebsd.h b/third_party/tcmalloc/vendor/src/malloc_hook_mmap_freebsd.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook_mmap_freebsd.h
rename to third_party/tcmalloc/vendor/src/malloc_hook_mmap_freebsd.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook_mmap_linux.h b/third_party/tcmalloc/vendor/src/malloc_hook_mmap_linux.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/malloc_hook_mmap_linux.h
rename to third_party/tcmalloc/vendor/src/malloc_hook_mmap_linux.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/maybe_threads.cc b/third_party/tcmalloc/vendor/src/maybe_threads.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/maybe_threads.cc
rename to third_party/tcmalloc/vendor/src/maybe_threads.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/maybe_threads.h b/third_party/tcmalloc/vendor/src/maybe_threads.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/maybe_threads.h
rename to third_party/tcmalloc/vendor/src/maybe_threads.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/memfs_malloc.cc b/third_party/tcmalloc/vendor/src/memfs_malloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/memfs_malloc.cc
rename to third_party/tcmalloc/vendor/src/memfs_malloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/memory_region_map.cc b/third_party/tcmalloc/vendor/src/memory_region_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/memory_region_map.cc
rename to third_party/tcmalloc/vendor/src/memory_region_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/memory_region_map.h b/third_party/tcmalloc/vendor/src/memory_region_map.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/memory_region_map.h
rename to third_party/tcmalloc/vendor/src/memory_region_map.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/packed-cache-inl.h b/third_party/tcmalloc/vendor/src/packed-cache-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/packed-cache-inl.h
rename to third_party/tcmalloc/vendor/src/packed-cache-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap.cc b/third_party/tcmalloc/vendor/src/page_heap.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap.cc
rename to third_party/tcmalloc/vendor/src/page_heap.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap.h b/third_party/tcmalloc/vendor/src/page_heap.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap.h
rename to third_party/tcmalloc/vendor/src/page_heap.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap_allocator.h b/third_party/tcmalloc/vendor/src/page_heap_allocator.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/page_heap_allocator.h
rename to third_party/tcmalloc/vendor/src/page_heap_allocator.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/pagemap.h b/third_party/tcmalloc/vendor/src/pagemap.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/pagemap.h
rename to third_party/tcmalloc/vendor/src/pagemap.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/pprof b/third_party/tcmalloc/vendor/src/pprof
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/pprof
rename to third_party/tcmalloc/vendor/src/pprof
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/profile-handler.cc b/third_party/tcmalloc/vendor/src/profile-handler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/profile-handler.cc
rename to third_party/tcmalloc/vendor/src/profile-handler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/profile-handler.h b/third_party/tcmalloc/vendor/src/profile-handler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/profile-handler.h
rename to third_party/tcmalloc/vendor/src/profile-handler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/profiledata.cc b/third_party/tcmalloc/vendor/src/profiledata.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/profiledata.cc
rename to third_party/tcmalloc/vendor/src/profiledata.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/profiledata.h b/third_party/tcmalloc/vendor/src/profiledata.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/profiledata.h
rename to third_party/tcmalloc/vendor/src/profiledata.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/profiler.cc b/third_party/tcmalloc/vendor/src/profiler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/profiler.cc
rename to third_party/tcmalloc/vendor/src/profiler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/raw_printer.cc b/third_party/tcmalloc/vendor/src/raw_printer.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/raw_printer.cc
rename to third_party/tcmalloc/vendor/src/raw_printer.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/raw_printer.h b/third_party/tcmalloc/vendor/src/raw_printer.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/raw_printer.h
rename to third_party/tcmalloc/vendor/src/raw_printer.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/sampler.cc b/third_party/tcmalloc/vendor/src/sampler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/sampler.cc
rename to third_party/tcmalloc/vendor/src/sampler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/sampler.h b/third_party/tcmalloc/vendor/src/sampler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/sampler.h
rename to third_party/tcmalloc/vendor/src/sampler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/solaris/libstdc++.la b/third_party/tcmalloc/vendor/src/solaris/libstdc++.la
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/solaris/libstdc++.la
rename to third_party/tcmalloc/vendor/src/solaris/libstdc++.la
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/span.cc b/third_party/tcmalloc/vendor/src/span.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/span.cc
rename to third_party/tcmalloc/vendor/src/span.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/span.h b/third_party/tcmalloc/vendor/src/span.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/span.h
rename to third_party/tcmalloc/vendor/src/span.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stack_trace_table.cc b/third_party/tcmalloc/vendor/src/stack_trace_table.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stack_trace_table.cc
rename to third_party/tcmalloc/vendor/src/stack_trace_table.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stack_trace_table.h b/third_party/tcmalloc/vendor/src/stack_trace_table.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stack_trace_table.h
rename to third_party/tcmalloc/vendor/src/stack_trace_table.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace.cc b/third_party/tcmalloc/vendor/src/stacktrace.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace.cc
rename to third_party/tcmalloc/vendor/src/stacktrace.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_arm-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_arm-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_arm-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_arm-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_config.h b/third_party/tcmalloc/vendor/src/stacktrace_config.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_config.h
rename to third_party/tcmalloc/vendor/src/stacktrace_config.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_generic-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_generic-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_generic-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_generic-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_libunwind-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_libunwind-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_libunwind-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_libunwind-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_powerpc-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_powerpc-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_powerpc-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_powerpc-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_win32-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_win32-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_win32-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_win32-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_x86-inl.h b/third_party/tcmalloc/vendor/src/stacktrace_x86-inl.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/stacktrace_x86-inl.h
rename to third_party/tcmalloc/vendor/src/stacktrace_x86-inl.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/static_vars.cc b/third_party/tcmalloc/vendor/src/static_vars.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/static_vars.cc
rename to third_party/tcmalloc/vendor/src/static_vars.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/static_vars.h b/third_party/tcmalloc/vendor/src/static_vars.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/static_vars.h
rename to third_party/tcmalloc/vendor/src/static_vars.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/symbolize.cc b/third_party/tcmalloc/vendor/src/symbolize.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/symbolize.cc
rename to third_party/tcmalloc/vendor/src/symbolize.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/symbolize.h b/third_party/tcmalloc/vendor/src/symbolize.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/symbolize.h
rename to third_party/tcmalloc/vendor/src/symbolize.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/system-alloc.cc b/third_party/tcmalloc/vendor/src/system-alloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/system-alloc.cc
rename to third_party/tcmalloc/vendor/src/system-alloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/system-alloc.h b/third_party/tcmalloc/vendor/src/system-alloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/system-alloc.h
rename to third_party/tcmalloc/vendor/src/system-alloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc.cc b/third_party/tcmalloc/vendor/src/tcmalloc.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc.cc
rename to third_party/tcmalloc/vendor/src/tcmalloc.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc.h b/third_party/tcmalloc/vendor/src/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc.h
rename to third_party/tcmalloc/vendor/src/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc_guard.h b/third_party/tcmalloc/vendor/src/tcmalloc_guard.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tcmalloc_guard.h
rename to third_party/tcmalloc/vendor/src/tcmalloc_guard.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/addressmap_unittest.cc b/third_party/tcmalloc/vendor/src/tests/addressmap_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/addressmap_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/addressmap_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/atomicops_unittest.cc b/third_party/tcmalloc/vendor/src/tests/atomicops_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/atomicops_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/atomicops_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/current_allocated_bytes_test.cc b/third_party/tcmalloc/vendor/src/tests/current_allocated_bytes_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/current_allocated_bytes_test.cc
rename to third_party/tcmalloc/vendor/src/tests/current_allocated_bytes_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/debugallocation_test.cc b/third_party/tcmalloc/vendor/src/tests/debugallocation_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/debugallocation_test.cc
rename to third_party/tcmalloc/vendor/src/tests/debugallocation_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/debugallocation_test.sh b/third_party/tcmalloc/vendor/src/tests/debugallocation_test.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/debugallocation_test.sh
rename to third_party/tcmalloc/vendor/src/tests/debugallocation_test.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/frag_unittest.cc b/third_party/tcmalloc/vendor/src/tests/frag_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/frag_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/frag_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/getpc_test.cc b/third_party/tcmalloc/vendor/src/tests/getpc_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/getpc_test.cc
rename to third_party/tcmalloc/vendor/src/tests/getpc_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker-death_unittest.sh b/third_party/tcmalloc/vendor/src/tests/heap-checker-death_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker-death_unittest.sh
rename to third_party/tcmalloc/vendor/src/tests/heap-checker-death_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker_unittest.cc b/third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker_unittest.sh b/third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-checker_unittest.sh
rename to third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-profiler_unittest.cc b/third_party/tcmalloc/vendor/src/tests/heap-profiler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-profiler_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/heap-profiler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-profiler_unittest.sh b/third_party/tcmalloc/vendor/src/tests/heap-profiler_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/heap-profiler_unittest.sh
rename to third_party/tcmalloc/vendor/src/tests/heap-profiler_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/low_level_alloc_unittest.cc b/third_party/tcmalloc/vendor/src/tests/low_level_alloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/low_level_alloc_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/low_level_alloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_extension_c_test.c b/third_party/tcmalloc/vendor/src/tests/malloc_extension_c_test.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_extension_c_test.c
rename to third_party/tcmalloc/vendor/src/tests/malloc_extension_c_test.c
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_extension_test.cc b/third_party/tcmalloc/vendor/src/tests/malloc_extension_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_extension_test.cc
rename to third_party/tcmalloc/vendor/src/tests/malloc_extension_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_hook_test.cc b/third_party/tcmalloc/vendor/src/tests/malloc_hook_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/malloc_hook_test.cc
rename to third_party/tcmalloc/vendor/src/tests/malloc_hook_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/markidle_unittest.cc b/third_party/tcmalloc/vendor/src/tests/markidle_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/markidle_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/markidle_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/maybe_threads_unittest.sh b/third_party/tcmalloc/vendor/src/tests/maybe_threads_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/maybe_threads_unittest.sh
rename to third_party/tcmalloc/vendor/src/tests/maybe_threads_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/memalign_unittest.cc b/third_party/tcmalloc/vendor/src/tests/memalign_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/memalign_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/memalign_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/packed-cache_test.cc b/third_party/tcmalloc/vendor/src/tests/packed-cache_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/packed-cache_test.cc
rename to third_party/tcmalloc/vendor/src/tests/packed-cache_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/page_heap_test.cc b/third_party/tcmalloc/vendor/src/tests/page_heap_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/page_heap_test.cc
rename to third_party/tcmalloc/vendor/src/tests/page_heap_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/pagemap_unittest.cc b/third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/pagemap_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profile-handler_unittest.cc b/third_party/tcmalloc/vendor/src/tests/profile-handler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profile-handler_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/profile-handler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiledata_unittest.cc b/third_party/tcmalloc/vendor/src/tests/profiledata_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiledata_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/profiledata_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiler_unittest.cc b/third_party/tcmalloc/vendor/src/tests/profiler_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiler_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/profiler_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiler_unittest.sh b/third_party/tcmalloc/vendor/src/tests/profiler_unittest.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/profiler_unittest.sh
rename to third_party/tcmalloc/vendor/src/tests/profiler_unittest.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/raw_printer_test.cc b/third_party/tcmalloc/vendor/src/tests/raw_printer_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/raw_printer_test.cc
rename to third_party/tcmalloc/vendor/src/tests/raw_printer_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/realloc_unittest.cc b/third_party/tcmalloc/vendor/src/tests/realloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/realloc_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/realloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampler_test.cc b/third_party/tcmalloc/vendor/src/tests/sampler_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampler_test.cc
rename to third_party/tcmalloc/vendor/src/tests/sampler_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampling_test.cc b/third_party/tcmalloc/vendor/src/tests/sampling_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampling_test.cc
rename to third_party/tcmalloc/vendor/src/tests/sampling_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampling_test.sh b/third_party/tcmalloc/vendor/src/tests/sampling_test.sh
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/sampling_test.sh
rename to third_party/tcmalloc/vendor/src/tests/sampling_test.sh
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/simple_compat_test.cc b/third_party/tcmalloc/vendor/src/tests/simple_compat_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/simple_compat_test.cc
rename to third_party/tcmalloc/vendor/src/tests/simple_compat_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/stack_trace_table_test.cc b/third_party/tcmalloc/vendor/src/tests/stack_trace_table_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/stack_trace_table_test.cc
rename to third_party/tcmalloc/vendor/src/tests/stack_trace_table_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/stacktrace_unittest.cc b/third_party/tcmalloc/vendor/src/tests/stacktrace_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/stacktrace_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/stacktrace_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/system-alloc_unittest.cc b/third_party/tcmalloc/vendor/src/tests/system-alloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/system-alloc_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/system-alloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/tcmalloc_large_unittest.cc b/third_party/tcmalloc/vendor/src/tests/tcmalloc_large_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/tcmalloc_large_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/tcmalloc_large_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/tcmalloc_unittest.cc b/third_party/tcmalloc/vendor/src/tests/tcmalloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/tcmalloc_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/tcmalloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/testutil.cc b/third_party/tcmalloc/vendor/src/tests/testutil.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/testutil.cc
rename to third_party/tcmalloc/vendor/src/tests/testutil.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/testutil.h b/third_party/tcmalloc/vendor/src/tests/testutil.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/testutil.h
rename to third_party/tcmalloc/vendor/src/tests/testutil.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/tests/thread_dealloc_unittest.cc b/third_party/tcmalloc/vendor/src/tests/thread_dealloc_unittest.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/tests/thread_dealloc_unittest.cc
rename to third_party/tcmalloc/vendor/src/tests/thread_dealloc_unittest.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/third_party/valgrind.h b/third_party/tcmalloc/vendor/src/third_party/valgrind.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/third_party/valgrind.h
rename to third_party/tcmalloc/vendor/src/third_party/valgrind.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/thread_cache.cc b/third_party/tcmalloc/vendor/src/thread_cache.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/thread_cache.cc
rename to third_party/tcmalloc/vendor/src/thread_cache.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/thread_cache.h b/third_party/tcmalloc/vendor/src/thread_cache.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/thread_cache.h
rename to third_party/tcmalloc/vendor/src/thread_cache.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/TODO b/third_party/tcmalloc/vendor/src/windows/TODO
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/TODO
rename to third_party/tcmalloc/vendor/src/windows/TODO
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/addr2line-pdb.c b/third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/addr2line-pdb.c
rename to third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/auto_testing_hook.h b/third_party/tcmalloc/vendor/src/windows/auto_testing_hook.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/auto_testing_hook.h
rename to third_party/tcmalloc/vendor/src/windows/auto_testing_hook.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/config.h b/third_party/tcmalloc/vendor/src/windows/config.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/config.h
rename to third_party/tcmalloc/vendor/src/windows/config.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/get_mangled_names.cc b/third_party/tcmalloc/vendor/src/windows/get_mangled_names.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/get_mangled_names.cc
rename to third_party/tcmalloc/vendor/src/windows/get_mangled_names.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/google/tcmalloc.h b/third_party/tcmalloc/vendor/src/windows/google/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/google/tcmalloc.h
rename to third_party/tcmalloc/vendor/src/windows/google/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/gperftools/tcmalloc.h b/third_party/tcmalloc/vendor/src/windows/gperftools/tcmalloc.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/gperftools/tcmalloc.h
rename to third_party/tcmalloc/vendor/src/windows/gperftools/tcmalloc.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/gperftools/tcmalloc.h.in b/third_party/tcmalloc/vendor/src/windows/gperftools/tcmalloc.h.in
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/gperftools/tcmalloc.h.in
rename to third_party/tcmalloc/vendor/src/windows/gperftools/tcmalloc.h.in
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/ia32_modrm_map.cc b/third_party/tcmalloc/vendor/src/windows/ia32_modrm_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/ia32_modrm_map.cc
rename to third_party/tcmalloc/vendor/src/windows/ia32_modrm_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/ia32_opcode_map.cc b/third_party/tcmalloc/vendor/src/windows/ia32_opcode_map.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/ia32_opcode_map.cc
rename to third_party/tcmalloc/vendor/src/windows/ia32_opcode_map.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mingw.h b/third_party/tcmalloc/vendor/src/windows/mingw.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mingw.h
rename to third_party/tcmalloc/vendor/src/windows/mingw.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler.cc b/third_party/tcmalloc/vendor/src/windows/mini_disassembler.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler.cc
rename to third_party/tcmalloc/vendor/src/windows/mini_disassembler.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler.h b/third_party/tcmalloc/vendor/src/windows/mini_disassembler.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler.h
rename to third_party/tcmalloc/vendor/src/windows/mini_disassembler.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler_types.h b/third_party/tcmalloc/vendor/src/windows/mini_disassembler_types.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/mini_disassembler_types.h
rename to third_party/tcmalloc/vendor/src/windows/mini_disassembler_types.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/nm-pdb.c b/third_party/tcmalloc/vendor/src/windows/nm-pdb.c
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/nm-pdb.c
rename to third_party/tcmalloc/vendor/src/windows/nm-pdb.c
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/override_functions.cc b/third_party/tcmalloc/vendor/src/windows/override_functions.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/override_functions.cc
rename to third_party/tcmalloc/vendor/src/windows/override_functions.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/patch_functions.cc b/third_party/tcmalloc/vendor/src/windows/patch_functions.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/patch_functions.cc
rename to third_party/tcmalloc/vendor/src/windows/patch_functions.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/port.cc b/third_party/tcmalloc/vendor/src/windows/port.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/port.cc
rename to third_party/tcmalloc/vendor/src/windows/port.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/port.h b/third_party/tcmalloc/vendor/src/windows/port.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/port.h
rename to third_party/tcmalloc/vendor/src/windows/port.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher.cc b/third_party/tcmalloc/vendor/src/windows/preamble_patcher.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher.cc
rename to third_party/tcmalloc/vendor/src/windows/preamble_patcher.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher.h b/third_party/tcmalloc/vendor/src/windows/preamble_patcher.h
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher.h
rename to third_party/tcmalloc/vendor/src/windows/preamble_patcher.h
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher_test.cc b/third_party/tcmalloc/vendor/src/windows/preamble_patcher_test.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher_test.cc
rename to third_party/tcmalloc/vendor/src/windows/preamble_patcher_test.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher_with_stub.cc b/third_party/tcmalloc/vendor/src/windows/preamble_patcher_with_stub.cc
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/preamble_patcher_with_stub.cc
rename to third_party/tcmalloc/vendor/src/windows/preamble_patcher_with_stub.cc
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/src/windows/shortproc.asm b/third_party/tcmalloc/vendor/src/windows/shortproc.asm
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/src/windows/shortproc.asm
rename to third_party/tcmalloc/vendor/src/windows/shortproc.asm
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/addr2line-pdb/addr2line-pdb.vcproj b/third_party/tcmalloc/vendor/vsprojects/addr2line-pdb/addr2line-pdb.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/addr2line-pdb/addr2line-pdb.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/addr2line-pdb/addr2line-pdb.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/addressmap_unittest/addressmap_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/addressmap_unittest/addressmap_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/addressmap_unittest/addressmap_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/addressmap_unittest/addressmap_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/frag_unittest/frag_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/frag_unittest/frag_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/frag_unittest/frag_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/frag_unittest/frag_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/libtcmalloc_minimal/libtcmalloc_minimal.vcproj b/third_party/tcmalloc/vendor/vsprojects/libtcmalloc_minimal/libtcmalloc_minimal.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/libtcmalloc_minimal/libtcmalloc_minimal.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/libtcmalloc_minimal/libtcmalloc_minimal.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/low_level_alloc_unittest/low_level_alloc_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/low_level_alloc_unittest/low_level_alloc_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/low_level_alloc_unittest/low_level_alloc_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/low_level_alloc_unittest/low_level_alloc_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/malloc_extension_test/malloc_extension_test.vcproj b/third_party/tcmalloc/vendor/vsprojects/malloc_extension_test/malloc_extension_test.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/malloc_extension_test/malloc_extension_test.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/malloc_extension_test/malloc_extension_test.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/markidle_unittest/markidle_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/markidle_unittest/markidle_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/markidle_unittest/markidle_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/markidle_unittest/markidle_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/nm-pdb/nm-pdb.vcproj b/third_party/tcmalloc/vendor/vsprojects/nm-pdb/nm-pdb.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/nm-pdb/nm-pdb.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/nm-pdb/nm-pdb.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/packed-cache_test/packed-cache_test.vcproj b/third_party/tcmalloc/vendor/vsprojects/packed-cache_test/packed-cache_test.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/packed-cache_test/packed-cache_test.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/packed-cache_test/packed-cache_test.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/page_heap_test/page_heap_test.vcproj b/third_party/tcmalloc/vendor/vsprojects/page_heap_test/page_heap_test.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/page_heap_test/page_heap_test.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/page_heap_test/page_heap_test.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/pagemap_unittest/pagemap_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/pagemap_unittest/pagemap_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/pagemap_unittest/pagemap_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/pagemap_unittest/pagemap_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/realloc_unittest/realloc_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/realloc_unittest/realloc_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/realloc_unittest/realloc_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/realloc_unittest/realloc_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/sampler_test/sampler_test.vcproj b/third_party/tcmalloc/vendor/vsprojects/sampler_test/sampler_test.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/sampler_test/sampler_test.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/sampler_test/sampler_test.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/stack_trace_table_test/stack_trace_table_test.vcproj b/third_party/tcmalloc/vendor/vsprojects/stack_trace_table_test/stack_trace_table_test.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/stack_trace_table_test/stack_trace_table_test.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/stack_trace_table_test/stack_trace_table_test.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tcmalloc_minimal_large/tcmalloc_minimal_large_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/tcmalloc_minimal_large/tcmalloc_minimal_large_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tcmalloc_minimal_large/tcmalloc_minimal_large_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/tcmalloc_minimal_large/tcmalloc_minimal_large_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tcmalloc_minimal_unittest/tcmalloc_minimal_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/tcmalloc_minimal_unittest/tcmalloc_minimal_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tcmalloc_minimal_unittest/tcmalloc_minimal_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/tcmalloc_minimal_unittest/tcmalloc_minimal_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/thread_dealloc_unittest/thread_dealloc_unittest.vcproj b/third_party/tcmalloc/vendor/vsprojects/thread_dealloc_unittest/thread_dealloc_unittest.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/thread_dealloc_unittest/thread_dealloc_unittest.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/thread_dealloc_unittest/thread_dealloc_unittest.vcproj
diff --git a/third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tmu-static/tmu-static.vcproj b/third_party/tcmalloc/vendor/vsprojects/tmu-static/tmu-static.vcproj
similarity index 100%
rename from third_party/tcmalloc/gperftools-2.0/vendor/vsprojects/tmu-static/tmu-static.vcproj
rename to third_party/tcmalloc/vendor/vsprojects/tmu-static/tmu-static.vcproj