| Index: third_party/opus/opus.h
|
| diff --git a/third_party/opus/opus.h b/third_party/opus/opus.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8e7b483cb993ebf3f6e6b8af4717f7344bf9cfe5
|
| --- /dev/null
|
| +++ b/third_party/opus/opus.h
|
| @@ -0,0 +1,12 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +// This is a shim header to include the right opus header.
|
| +// Use this instead of referencing the opus header directly.
|
| +
|
| +#if defined(USE_SYSTEM_OPUS)
|
| +#include <opus/opus.h>
|
| +#else
|
| +#include "third_party/opus/src/include/opus.h"
|
| +#endif
|
|
|