Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: third_party/WebKit/Source/web/WebExport.h

Issue 1756343002: Revert of Extract webkit_unit_tests from blink_web component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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 #ifndef WebExport_h
6 #define WebExport_h
7
8 #include "wtf/Compiler.h"
9
10 namespace blink {
11
12 // This macro is intended to export symbols in Source/web/ which are still
13 // private to Blink (for instance, because they are used in unit tests).
14
15 #if defined(COMPONENT_BUILD)
16 #if defined(WIN32)
17 #if BLINK_WEB_IMPLEMENTATION
18 #define WEB_EXPORT __declspec(dllexport)
19 #else
20 #define WEB_EXPORT __declspec(dllimport)
21 #endif // BLINK_WEB_IMPLEMENTATION
22 #else // defined(WIN32)
23 #define WEB_EXPORT __attribute__((visibility("default")))
24 #endif
25 #else // defined(COMPONENT_BUILD)
26 #define WEB_EXPORT
27 #endif
28
29 } // namespace blink
30
31 #endif // WebExport_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/TextFinder.h ('k') | third_party/WebKit/Source/web/WebFrameImplBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698