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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/theme:theme_resources", | 100 "//chrome/app/theme:theme_resources", |
101 "//components/resources", | 101 "//components/resources", |
102 "//content/public/browser", | 102 "//content/public/browser", |
103 "//mojo/edk/system", | 103 "//mojo/edk/system", |
104 "//mojo/environment:chromium", | |
105 "//printing", | 104 "//printing", |
106 "//skia", | 105 "//skia", |
107 "//ui/aura", | 106 "//ui/aura", |
108 "//ui/base", | 107 "//ui/base", |
109 "//ui/base/ime", | 108 "//ui/base/ime", |
110 "//ui/events", | 109 "//ui/events", |
111 "//ui/events:events_base", | 110 "//ui/events:events_base", |
112 "//ui/gfx", | 111 "//ui/gfx", |
113 "//ui/gfx/geometry", | 112 "//ui/gfx/geometry", |
114 "//ui/gfx/x", | 113 "//ui/gfx/x", |
115 "//ui/native_theme", | 114 "//ui/native_theme", |
116 "//ui/resources", | 115 "//ui/resources", |
117 "//ui/shell_dialogs", | 116 "//ui/shell_dialogs", |
118 "//ui/strings", | 117 "//ui/strings", |
119 "//ui/views", | 118 "//ui/views", |
120 ] | 119 ] |
121 | 120 |
122 if (use_gtk3) { | 121 if (use_gtk3) { |
123 deps += [ | 122 deps += [ |
124 "//build/config/linux/gtk3", | 123 "//build/config/linux/gtk3", |
125 "//build/config/linux/gtk3:gtkprint3", | 124 "//build/config/linux/gtk3:gtkprint3", |
126 ] | 125 ] |
127 } else { | 126 } else { |
128 deps += [ | 127 deps += [ |
129 "//build/config/linux/gtk2", | 128 "//build/config/linux/gtk2", |
130 "//build/config/linux/gtk2:gtkprint2", | 129 "//build/config/linux/gtk2:gtkprint2", |
131 ] | 130 ] |
132 } | 131 } |
133 } | 132 } |
OLD | NEW |