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

Side by Side Diff: chrome/browser/ui/libgtk2ui/libgtk2ui.gyp

Issue 10545037: Aura/GTK integration: Create a small stub library that can talk to GTK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky nits Created 8 years, 6 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 | Annotate | Revision Log
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 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'gtk2ui',
12 'type': '<(component)',
13 'dependencies': [
14 '../../../../base/base.gyp:base',
15 '../../../../base/base.gyp:base_i18n',
16 '../../../../build/linux/system.gyp:gtk',
17 '../../../../skia/skia.gyp:skia',
18 '../../../../ui/ui.gyp:ui',
19 '../../../../ui/ui.gyp:ui_resources',
20 '../../../../ui/ui.gyp:ui_resources_2x',
21 '../../../../ui/ui.gyp:ui_resources_standard',
22 '../../../chrome_resources.gyp:chrome_extra_resources',
23 '../../../chrome_resources.gyp:chrome_resources',
24 '../../../chrome_resources.gyp:theme_resources',
25 ],
26 'defines': [
27 'LIBGTK2UI_IMPLEMENTATION',
28 ],
29 # Several of our source files are named _gtk2.cc. This isn't to
30 # differentiate them from their source files (ninja and make are sane
31 # build systems, unlike MSVS). It is instead to get around the rest of
32 # the normal, global gtk exclusion rules, as we are otherwise using gtk
33 # in a non-gtk build.
34 'sources': [
35 'chrome_gtk_frame.cc',
36 'chrome_gtk_frame.h',
37 'gtk2_ui.cc',
38 'gtk2_ui.h',
39 'gtk2_util.cc',
40 'gtk2_util.h',
41 'owned_widget_gtk2.cc',
tfarina 2012/06/07 17:02:05 nit: list libgtk2ui_export.h here?
42 'owned_widget_gtk2.h',
43 'skia_utils_gtk2.cc',
44 'skia_utils_gtk2.h',
45 ],
46 },
47 ],
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698