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

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

Issue 18334003: Linux status icon for Ubuntu Unity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: file restored Created 7 years, 5 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
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 15 matching lines...) Expand all
26 ], 26 ],
27 'defines': [ 27 'defines': [
28 'LIBGTK2UI_IMPLEMENTATION', 28 'LIBGTK2UI_IMPLEMENTATION',
29 ], 29 ],
30 # Several of our source files are named _gtk2.cc. This isn't to 30 # Several of our source files are named _gtk2.cc. This isn't to
31 # differentiate them from their source files (ninja and make are sane 31 # differentiate them from their source files (ninja and make are sane
32 # build systems, unlike MSVS). It is instead to get around the rest of 32 # build systems, unlike MSVS). It is instead to get around the rest of
33 # the normal, global gtk exclusion rules, as we are otherwise using gtk 33 # the normal, global gtk exclusion rules, as we are otherwise using gtk
34 # in a non-gtk build. 34 # in a non-gtk build.
35 'sources': [ 35 'sources': [
36 'app_indicator_icon.cc',
37 'app_indicator_icon.h',
36 'chrome_gtk_frame.cc', 38 'chrome_gtk_frame.cc',
37 'chrome_gtk_frame.h', 39 'chrome_gtk_frame.h',
38 'gtk2_ui.cc', 40 'gtk2_ui.cc',
39 'gtk2_ui.h', 41 'gtk2_ui.h',
40 'gtk2_util.cc', 42 'gtk2_util.cc',
41 'gtk2_util.h', 43 'gtk2_util.h',
42 'libgtk2ui_export.h', 44 'libgtk2ui_export.h',
45 'menu_util.cc',
46 'menu_util.h',
43 'native_theme_gtk2.cc', 47 'native_theme_gtk2.cc',
44 'native_theme_gtk2.h', 48 'native_theme_gtk2.h',
45 'owned_widget_gtk2.cc', 49 'owned_widget_gtk2.cc',
46 'owned_widget_gtk2.h', 50 'owned_widget_gtk2.h',
47 'select_file_dialog_impl.cc', 51 'select_file_dialog_impl.cc',
48 'select_file_dialog_impl.h', 52 'select_file_dialog_impl.h',
49 'select_file_dialog_impl_gtk2.cc', 53 'select_file_dialog_impl_gtk2.cc',
50 'select_file_dialog_impl_kde.cc', 54 'select_file_dialog_impl_kde.cc',
51 'skia_utils_gtk2.cc', 55 'skia_utils_gtk2.cc',
52 'skia_utils_gtk2.h', 56 'skia_utils_gtk2.h',
53 'unity_service.cc', 57 'unity_service.cc',
54 'unity_service.h', 58 'unity_service.h',
55 ], 59 ],
56 }, 60 },
57 ], 61 ],
58 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698