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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 # See crbug.com/462689 for details. | 84 # See crbug.com/462689 for details. |
85 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] | 85 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] |
86 | 86 |
87 configs += [ | 87 configs += [ |
88 ":libgtk2ui_warnings", | 88 ":libgtk2ui_warnings", |
89 "//build/config/linux:x11", | 89 "//build/config/linux:x11", |
90 ] | 90 ] |
91 | 91 |
92 deps = [ | 92 deps = [ |
93 "//base", | 93 "//base", |
| 94 "//base:i18n", |
94 "//base/third_party/dynamic_annotations", | 95 "//base/third_party/dynamic_annotations", |
95 "//base:i18n", | |
96 "//chrome/app/theme:theme_resources", | |
97 "//chrome:extra_resources", | 96 "//chrome:extra_resources", |
98 "//chrome:resources", | 97 "//chrome:resources", |
99 "//chrome:strings", | 98 "//chrome:strings", |
| 99 "//chrome/app/theme:theme_resources", |
100 "//components/resources", | 100 "//components/resources", |
101 "//content/public/browser", | 101 "//content/public/browser", |
102 "//mojo/environment:chromium", | 102 "//mojo/environment:chromium", |
103 "//printing", | 103 "//printing", |
104 "//skia", | 104 "//skia", |
105 "//third_party/mojo/src/mojo/edk/system", | 105 "//third_party/mojo/src/mojo/edk/system", |
106 "//ui/aura", | 106 "//ui/aura", |
107 "//ui/base", | 107 "//ui/base", |
108 "//ui/base/ime", | 108 "//ui/base/ime", |
109 "//ui/events", | 109 "//ui/events", |
(...skipping 13 matching lines...) Expand all Loading... |
123 "//build/config/linux/gtk3", | 123 "//build/config/linux/gtk3", |
124 "//build/config/linux/gtk3:gtkprint3", | 124 "//build/config/linux/gtk3:gtkprint3", |
125 ] | 125 ] |
126 } else { | 126 } else { |
127 deps += [ | 127 deps += [ |
128 "//build/config/linux/gtk2", | 128 "//build/config/linux/gtk2", |
129 "//build/config/linux/gtk2:gtkprint2", | 129 "//build/config/linux/gtk2:gtkprint2", |
130 ] | 130 ] |
131 } | 131 } |
132 } | 132 } |
OLD | NEW |