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

Side by Side Diff: chrome/browser/ui/libgtk2ui/libgtk2ui_export.h

Issue 2449243002: Gtk3 ui: Add libgtk3ui as a separate build component (Closed)
Patch Set: Add theme_properties dep to //chrome/browser/ui Created 4 years, 1 month 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
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_util.cc ('k') | chrome/browser/ui/libgtk2ui/menu_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_LIBGTK2UI_EXPORT_H_
6 #define CHROME_BROWSER_UI_LIBGTK2UI_LIBGTK2UI_EXPORT_H_
7
8 // Defines LIBGTK2UI_EXPORT so that functionality implemented by our limited
9 // gtk2 module can be exported to consumers.
10
11 #if defined(COMPONENT_BUILD)
12 #if defined(WIN32)
13
14 #error "LIBGTK2UI does not build on Windows."
15
16 #else // defined(WIN32)
17 #if defined(LIBGTK2UI_IMPLEMENTATION)
18 #define LIBGTK2UI_EXPORT __attribute__((visibility("default")))
19 #else
20 #define LIBGTK2UI_EXPORT
21 #endif
22 #endif
23
24 #else // defined(COMPONENT_BUILD)
25 #define LIBGTK2UI_EXPORT
26 #endif
27
28 #endif // CHROME_BROWSER_UI_LIBGTK2UI_LIBGTK2UI_EXPORT_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_util.cc ('k') | chrome/browser/ui/libgtk2ui/menu_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698