| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 assert(is_linux, "This file should only be referenced on Linux") | 5 assert(is_linux, "This file should only be referenced on Linux") |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 | 9 |
| 10 # gn orders flags on a target before flags from configs. The default config | 10 # gn orders flags on a target before flags from configs. The default config |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 component("libgtk2ui") { | 26 component("libgtk2ui") { |
| 27 sources = [ | 27 sources = [ |
| 28 "app_indicator_icon.cc", | 28 "app_indicator_icon.cc", |
| 29 "app_indicator_icon.h", | 29 "app_indicator_icon.h", |
| 30 "app_indicator_icon_menu.cc", | 30 "app_indicator_icon_menu.cc", |
| 31 "app_indicator_icon_menu.h", | 31 "app_indicator_icon_menu.h", |
| 32 "chrome_gtk_frame.cc", | 32 "chrome_gtk_frame.cc", |
| 33 "chrome_gtk_frame.h", | 33 "chrome_gtk_frame.h", |
| 34 "chrome_gtk_menu_subclasses.cc", | 34 "chrome_gtk_menu_subclasses.cc", |
| 35 "chrome_gtk_menu_subclasses.h", | 35 "chrome_gtk_menu_subclasses.h", |
| 36 "g_object_destructor_filo.cc", | |
| 37 "g_object_destructor_filo.h", | |
| 38 "gtk2_event_loop.cc", | 36 "gtk2_event_loop.cc", |
| 39 "gtk2_event_loop.h", | 37 "gtk2_event_loop.h", |
| 40 "gtk2_key_bindings_handler.cc", | 38 "gtk2_key_bindings_handler.cc", |
| 41 "gtk2_key_bindings_handler.h", | 39 "gtk2_key_bindings_handler.h", |
| 42 "gtk2_signal_registrar.cc", | |
| 43 "gtk2_signal_registrar.h", | |
| 44 "gtk2_status_icon.cc", | 40 "gtk2_status_icon.cc", |
| 45 "gtk2_status_icon.h", | 41 "gtk2_status_icon.h", |
| 46 "gtk2_ui.cc", | 42 "gtk2_ui.cc", |
| 47 "gtk2_ui.h", | 43 "gtk2_ui.h", |
| 48 "gtk2_util.cc", | 44 "gtk2_util.cc", |
| 49 "gtk2_util.h", | 45 "gtk2_util.h", |
| 50 "libgtk2ui_export.h", | 46 "libgtk2ui_export.h", |
| 51 "menu_util.cc", | 47 "menu_util.cc", |
| 52 "menu_util.h", | 48 "menu_util.h", |
| 53 "native_theme_gtk2.cc", | 49 "native_theme_gtk2.cc", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "//build/config/linux/gtk3", | 123 "//build/config/linux/gtk3", |
| 128 "//build/config/linux/gtk3:gtkprint3", | 124 "//build/config/linux/gtk3:gtkprint3", |
| 129 ] | 125 ] |
| 130 } else { | 126 } else { |
| 131 deps += [ | 127 deps += [ |
| 132 "//build/config/linux/gtk2", | 128 "//build/config/linux/gtk2", |
| 133 "//build/config/linux/gtk2:gtkprint2", | 129 "//build/config/linux/gtk2:gtkprint2", |
| 134 ] | 130 ] |
| 135 } | 131 } |
| 136 } | 132 } |
| OLD | NEW |