OLD | NEW |
| (Empty) |
1 // Copyright 2013 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 // This file is overridden to disable exports and imports in libjingle | |
6 // between the libpeerconnection and libjingle_webrtc targets. | |
7 // TODO(tommi): Remove when a version of libjingle has been rolled in that | |
8 // either removes this header file or offers an easy way to turn this off. | |
9 | |
10 #ifndef TALK_MEDIA_WEBRTC_WEBRTCEXPORT_H_ | |
11 #define TALK_MEDIA_WEBRTC_WEBRTCEXPORT_H_ | |
12 | |
13 #ifndef NON_EXPORTED_BASE | |
14 #define NON_EXPORTED_BASE(code) code | |
15 #endif // NON_EXPORTED_BASE | |
16 | |
17 #ifndef WRME_EXPORT | |
18 #define WRME_EXPORT | |
19 #endif | |
20 | |
21 #endif // TALK_MEDIA_WEBRTC_WEBRTCEXPORT_H_ | |
OLD | NEW |