summaryrefslogtreecommitdiffstats
path: root/third_party/tcmalloc/chromium/src/config.h
blob: 812c67c8fe83de6b41653d717b841f4ec0a6aee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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"

#define TC_VERSION_MAJOR 1
#define TC_VERSION_MINOR 4
#define TC_VERSION_PATCH ""
#define TC_VERSION_STRING "google-perftools 1.4"

#if defined(OS_WIN)
#include "third_party/tcmalloc/chromium/src/config_win.h"
#elif defined(OS_LINUX)
#include "third_party/tcmalloc/chromium/src/config_linux.h"
#endif

#endif // CONFIG_H_