| OLD | NEW |
| 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 Loading... |
| 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_menu.cc', | |
| 43 'app_indicator_icon_menu.h', | |
| 44 'chrome_gtk_frame.cc', | 42 'chrome_gtk_frame.cc', |
| 45 'chrome_gtk_frame.h', | 43 'chrome_gtk_frame.h', |
| 46 'chrome_gtk_menu_subclasses.cc', | 44 'chrome_gtk_menu_subclasses.cc', |
| 47 'chrome_gtk_menu_subclasses.h', | 45 'chrome_gtk_menu_subclasses.h', |
| 48 'g_object_destructor_filo.cc', | 46 'g_object_destructor_filo.cc', |
| 49 'g_object_destructor_filo.h', | 47 'g_object_destructor_filo.h', |
| 50 'gconf_listener.cc', | 48 'gconf_listener.cc', |
| 51 'gconf_listener.h', | 49 'gconf_listener.h', |
| 52 'gtk2_border.cc', | 50 'gtk2_border.cc', |
| 53 'gtk2_border.h', | 51 'gtk2_border.h', |
| 54 'gtk2_event_loop.cc', | 52 'gtk2_event_loop.cc', |
| 55 'gtk2_event_loop.h', | 53 'gtk2_event_loop.h', |
| 56 'gtk2_key_bindings_handler.cc', | 54 'gtk2_key_bindings_handler.cc', |
| 57 'gtk2_key_bindings_handler.h', | 55 'gtk2_key_bindings_handler.h', |
| 58 'gtk2_signal_registrar.cc', | 56 'gtk2_signal_registrar.cc', |
| 59 'gtk2_signal_registrar.h', | 57 'gtk2_signal_registrar.h', |
| 60 'gtk2_status_icon.cc', | |
| 61 'gtk2_status_icon.h', | |
| 62 'gtk2_ui.cc', | 58 'gtk2_ui.cc', |
| 63 'gtk2_ui.h', | 59 'gtk2_ui.h', |
| 64 'gtk2_util.cc', | 60 'gtk2_util.cc', |
| 65 'gtk2_util.h', | 61 'gtk2_util.h', |
| 66 'libgtk2ui_export.h', | 62 'libgtk2ui_export.h', |
| 67 'menu_util.cc', | 63 'menu_util.cc', |
| 68 'menu_util.h', | 64 'menu_util.h', |
| 69 'native_theme_gtk2.cc', | 65 'native_theme_gtk2.cc', |
| 70 'native_theme_gtk2.h', | 66 'native_theme_gtk2.h', |
| 71 'owned_widget_gtk2.cc', | 67 'owned_widget_gtk2.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 96 # G_DEFINE_TYPE automatically generates a *get_instance_private inline
function after glib 2.37. | 92 # G_DEFINE_TYPE automatically generates a *get_instance_private inline
function after glib 2.37. |
| 97 # That's unused. Prevent to complain about it. | 93 # That's unused. Prevent to complain about it. |
| 98 'cflags': [ | 94 'cflags': [ |
| 99 '-Wno-unused-function', | 95 '-Wno-unused-function', |
| 100 ], | 96 ], |
| 101 }], | 97 }], |
| 102 ], | 98 ], |
| 103 }, | 99 }, |
| 104 ], | 100 ], |
| 105 } | 101 } |
| OLD | NEW |