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