OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 #include "base/stringize_macros.h" |
| 6 |
| 7 // HACK: This is a hack to make sure that we don't export opus symbols. |
| 8 // opus_defines.h sets OPUS_EXPORT only when OPUS_BUILD is defined. |
| 9 #if defined(OPUS_BUILD) |
| 10 #undef OPUS_BUILD |
| 11 #define OPUS_BUILD_DEFINED |
| 12 #endif // defined(OPUS_BUILD) |
| 13 |
| 14 #include "third_party/opus/src/include/opus_defines.h" |
| 15 |
| 16 #if defined(OPUS_BUILD_DEFINED) |
| 17 #undef OPUS_BUILD_DEFINED |
| 18 #define OPUS_BUILD |
| 19 #endif // defined(OPUS_BUILD_DEFINED) |
OLD | NEW |