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

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

Issue 291893009: Fall back to X11 system tray icons if libappindicator is not available (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 21 matching lines...) Expand all
32 'LIBGTK2UI_IMPLEMENTATION', 32 'LIBGTK2UI_IMPLEMENTATION',
33 ], 33 ],
34 # Several of our source files are named _gtk2.cc. This isn't to 34 # Several of our source files are named _gtk2.cc. This isn't to
35 # differentiate them from their source files (ninja and make are sane 35 # differentiate them from their source files (ninja and make are sane
36 # build systems, unlike MSVS). It is instead to get around the rest of 36 # build systems, unlike MSVS). It is instead to get around the rest of
37 # the normal, global gtk exclusion rules, as we are otherwise using gtk 37 # the normal, global gtk exclusion rules, as we are otherwise using gtk
38 # in a non-gtk build. 38 # in a non-gtk build.
39 'sources': [ 39 'sources': [
40 'app_indicator_icon.cc', 40 'app_indicator_icon.cc',
41 'app_indicator_icon.h', 41 'app_indicator_icon.h',
42 'app_indicator_icon_fallback.cc',
43 'app_indicator_icon_fallback.h',
44 'app_indicator_icon_menu.cc',
45 'app_indicator_icon_menu.h',
42 'chrome_gtk_frame.cc', 46 'chrome_gtk_frame.cc',
43 'chrome_gtk_frame.h', 47 'chrome_gtk_frame.h',
44 'chrome_gtk_menu_subclasses.cc', 48 'chrome_gtk_menu_subclasses.cc',
45 'chrome_gtk_menu_subclasses.h', 49 'chrome_gtk_menu_subclasses.h',
46 'g_object_destructor_filo.cc', 50 'g_object_destructor_filo.cc',
47 'g_object_destructor_filo.h', 51 'g_object_destructor_filo.h',
48 'gconf_listener.cc', 52 'gconf_listener.cc',
49 'gconf_listener.h', 53 'gconf_listener.h',
50 'gtk2_border.cc', 54 'gtk2_border.cc',
51 'gtk2_border.h', 55 'gtk2_border.h',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 # G_DEFINE_TYPE automatically generates a *get_instance_private inline function after glib 2.37. 96 # G_DEFINE_TYPE automatically generates a *get_instance_private inline function after glib 2.37.
93 # That's unused. Prevent to complain about it. 97 # That's unused. Prevent to complain about it.
94 'cflags': [ 98 'cflags': [
95 '-Wno-unused-function', 99 '-Wno-unused-function',
96 ], 100 ],
97 }], 101 }],
98 ], 102 ],
99 }, 103 },
100 ], 104 ],
101 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698