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 37 matching lines...) Loading... |
48 "menu_util.h", | 48 "menu_util.h", |
49 "native_theme_gtk2.cc", | 49 "native_theme_gtk2.cc", |
50 "native_theme_gtk2.h", | 50 "native_theme_gtk2.h", |
51 "print_dialog_gtk2.cc", | 51 "print_dialog_gtk2.cc", |
52 "print_dialog_gtk2.h", | 52 "print_dialog_gtk2.h", |
53 "printing_gtk2_util.cc", | 53 "printing_gtk2_util.cc", |
54 "printing_gtk2_util.h", | 54 "printing_gtk2_util.h", |
55 "select_file_dialog_impl.cc", | 55 "select_file_dialog_impl.cc", |
56 "select_file_dialog_impl.h", | 56 "select_file_dialog_impl.h", |
57 "select_file_dialog_impl_gtk2.cc", | 57 "select_file_dialog_impl_gtk2.cc", |
| 58 "select_file_dialog_impl_gtk2.h", |
58 "select_file_dialog_impl_kde.cc", | 59 "select_file_dialog_impl_kde.cc", |
59 "skia_utils_gtk2.cc", | 60 "skia_utils_gtk2.cc", |
60 "skia_utils_gtk2.h", | 61 "skia_utils_gtk2.h", |
61 "unity_service.cc", | 62 "unity_service.cc", |
62 "unity_service.h", | 63 "unity_service.h", |
63 "x11_input_method_context_impl_gtk2.cc", | 64 "x11_input_method_context_impl_gtk2.cc", |
64 "x11_input_method_context_impl_gtk2.h", | 65 "x11_input_method_context_impl_gtk2.h", |
65 ] | 66 ] |
66 | 67 |
67 if (use_gconf) { | 68 if (use_gconf) { |
(...skipping 55 matching lines...) Loading... |
123 "//build/config/linux/gtk3", | 124 "//build/config/linux/gtk3", |
124 "//build/config/linux/gtk3:gtkprint3", | 125 "//build/config/linux/gtk3:gtkprint3", |
125 ] | 126 ] |
126 } else { | 127 } else { |
127 deps += [ | 128 deps += [ |
128 "//build/config/linux/gtk2", | 129 "//build/config/linux/gtk2", |
129 "//build/config/linux/gtk2:gtkprint2", | 130 "//build/config/linux/gtk2:gtkprint2", |
130 ] | 131 ] |
131 } | 132 } |
132 } | 133 } |
OLD | NEW |