OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONFIG_H_ |
| 6 |
| 7 #include "build/build_config.h" |
| 8 |
| 9 #define TC_VERSION_MAJOR 1 |
| 10 #define TC_VERSION_MINOR 4 |
| 11 #define TC_VERSION_PATCH "" |
| 12 #define TC_VERSION_STRING "google-perftools 1.4" |
| 13 |
| 14 #if defined(OS_WIN) |
| 15 #include "third_party/tcmalloc/chromium/src/config_win.h" |
| 16 #elif defined(OS_LINUX) |
| 17 #include "third_party/tcmalloc/chromium/src/config_linux.h" |
| 18 #elif defined(OS_FREEBSD) |
| 19 #include "third_party/tcmalloc/chromium/src/config_freebsd.h" |
| 20 #endif |
| 21 |
| 22 #endif // CONFIG_H_ |
OLD | NEW |