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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 deps = [ | 93 deps = [ |
94 "//base", | 94 "//base", |
95 "//base:i18n", | 95 "//base:i18n", |
96 "//base/third_party/dynamic_annotations", | 96 "//base/third_party/dynamic_annotations", |
97 "//chrome:extra_resources", | 97 "//chrome:extra_resources", |
98 "//chrome:resources", | 98 "//chrome:resources", |
99 "//chrome:strings", | 99 "//chrome:strings", |
100 "//chrome/app:command_ids", | 100 "//chrome/app:command_ids", |
101 "//chrome/app/theme:theme_resources", | 101 "//chrome/app/theme:theme_resources", |
| 102 "//chrome/common", |
102 "//components/resources", | 103 "//components/resources", |
103 "//content/public/browser", | 104 "//content/public/browser", |
104 "//printing", | 105 "//printing", |
105 "//skia", | 106 "//skia", |
106 "//ui/aura", | 107 "//ui/aura", |
107 "//ui/base", | 108 "//ui/base", |
108 "//ui/base/ime", | 109 "//ui/base/ime", |
109 "//ui/display", | 110 "//ui/display", |
110 "//ui/events", | 111 "//ui/events", |
111 "//ui/events:events_base", | 112 "//ui/events:events_base", |
(...skipping 13 matching lines...) Expand all Loading... |
125 "//build/config/linux/gtk3", | 126 "//build/config/linux/gtk3", |
126 "//build/config/linux/gtk3:gtkprint3", | 127 "//build/config/linux/gtk3:gtkprint3", |
127 ] | 128 ] |
128 } else { | 129 } else { |
129 deps += [ | 130 deps += [ |
130 "//build/config/linux/gtk2", | 131 "//build/config/linux/gtk2", |
131 "//build/config/linux/gtk2:gtkprint2", | 132 "//build/config/linux/gtk2:gtkprint2", |
132 ] | 133 ] |
133 } | 134 } |
134 } | 135 } |
OLD | NEW |