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 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 assert(enable_extensions) | 9 assert(enable_extensions) |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "//chrome") | 109 "//chrome") |
110 } | 110 } |
111 | 111 |
112 if (use_ash) { | 112 if (use_ash) { |
113 sources += [ | 113 sources += [ |
114 "api/tabs/ash_panel_contents.cc", | 114 "api/tabs/ash_panel_contents.cc", |
115 "api/tabs/ash_panel_contents.h", | 115 "api/tabs/ash_panel_contents.h", |
116 ] | 116 ] |
117 } | 117 } |
118 | 118 |
| 119 if (use_aura) { |
| 120 deps += [ |
| 121 "//ui/keyboard", |
| 122 "//ui/keyboard:resources", |
| 123 ] |
| 124 } |
| 125 |
| 126 if (toolkit_views) { |
| 127 deps += [ "//ui/views" ] |
| 128 } |
| 129 |
119 if (is_linux) { | 130 if (is_linux) { |
120 configs += [ "//build/config/linux:fontconfig" ] | 131 configs += [ "//build/config/linux:fontconfig" ] |
121 deps += [ "//dbus" ] | 132 deps += [ "//dbus" ] |
122 if (use_x11) { | 133 if (use_x11) { |
123 configs += [ "//build/config/linux:x11" ] | 134 configs += [ "//build/config/linux:x11" ] |
124 deps += [ | 135 deps += [ |
125 "//ui/events:events_base", | 136 "//ui/events:events_base", |
126 "//ui/events/platform", | 137 "//ui/events/platform", |
127 "//ui/events/platform/x11", | 138 "//ui/events/platform/x11", |
128 ] | 139 ] |
(...skipping 20 matching lines...) Expand all Loading... |
149 | 160 |
150 if (use_brlapi) { | 161 if (use_brlapi) { |
151 deps += [ "//build/config/linux:libbrlapi" ] | 162 deps += [ "//build/config/linux:libbrlapi" ] |
152 sources += rebase_path(gypi_values.chrome_browser_extensions_brlapi_sources, | 163 sources += rebase_path(gypi_values.chrome_browser_extensions_brlapi_sources, |
153 ".", | 164 ".", |
154 "//chrome") | 165 "//chrome") |
155 } else { | 166 } else { |
156 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 167 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
157 } | 168 } |
158 | 169 |
159 if (use_aura) { | |
160 deps += [ | |
161 "//ui/keyboard", | |
162 "//ui/keyboard:resources", | |
163 ] | |
164 } | |
165 | |
166 # chromeos uses its own global_shortcut_listener, _x11 is not necessary. | 170 # chromeos uses its own global_shortcut_listener, _x11 is not necessary. |
167 if (is_chromeos || !use_x11) { | 171 if (is_chromeos || !use_x11) { |
168 sources -= [ | 172 sources -= [ |
169 "global_shortcut_listener_x11.cc", | 173 "global_shortcut_listener_x11.cc", |
170 "global_shortcut_listener_x11.h", | 174 "global_shortcut_listener_x11.h", |
171 ] | 175 ] |
172 } | 176 } |
173 | 177 |
174 if (is_win || is_mac) { | 178 if (is_win || is_mac) { |
175 deps += [ "//components/wifi" ] | 179 deps += [ "//components/wifi" ] |
(...skipping 22 matching lines...) Expand all Loading... |
198 "//chrome") | 202 "//chrome") |
199 } | 203 } |
200 | 204 |
201 if (is_chromeos && use_ozone) { | 205 if (is_chromeos && use_ozone) { |
202 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 206 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
203 } | 207 } |
204 if (!use_ozone) { | 208 if (!use_ozone) { |
205 sources -= [ "global_shortcut_listener_ozone.cc" ] | 209 sources -= [ "global_shortcut_listener_ozone.cc" ] |
206 } | 210 } |
207 } | 211 } |
OLD | NEW |