| 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 11 matching lines...) Expand all Loading... |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 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_browser_main_extra_parts_views_gtk.cc", |
| 33 "chrome_browser_main_extra_parts_views_gtk.h", |
| 32 "chrome_gtk_frame.cc", | 34 "chrome_gtk_frame.cc", |
| 33 "chrome_gtk_frame.h", | 35 "chrome_gtk_frame.h", |
| 34 "chrome_gtk_menu_subclasses.cc", | 36 "chrome_gtk_menu_subclasses.cc", |
| 35 "chrome_gtk_menu_subclasses.h", | 37 "chrome_gtk_menu_subclasses.h", |
| 36 "gtk2_event_loop.cc", | 38 "gtk2_event_loop.cc", |
| 37 "gtk2_event_loop.h", | 39 "gtk2_event_loop.h", |
| 38 "gtk2_key_bindings_handler.cc", | 40 "gtk2_key_bindings_handler.cc", |
| 39 "gtk2_key_bindings_handler.h", | 41 "gtk2_key_bindings_handler.h", |
| 40 "gtk2_status_icon.cc", | 42 "gtk2_status_icon.cc", |
| 41 "gtk2_status_icon.h", | 43 "gtk2_status_icon.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "//build/config/linux/gtk3", | 126 "//build/config/linux/gtk3", |
| 125 "//build/config/linux/gtk3:gtkprint3", | 127 "//build/config/linux/gtk3:gtkprint3", |
| 126 ] | 128 ] |
| 127 } else { | 129 } else { |
| 128 deps += [ | 130 deps += [ |
| 129 "//build/config/linux/gtk2", | 131 "//build/config/linux/gtk2", |
| 130 "//build/config/linux/gtk2:gtkprint2", | 132 "//build/config/linux/gtk2:gtkprint2", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| 133 } | 135 } |
| OLD | NEW |