| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 if (use_ash) { | 111 if (use_ash) { |
| 112 sources += [ | 112 sources += [ |
| 113 "api/tabs/ash_panel_contents.cc", | 113 "api/tabs/ash_panel_contents.cc", |
| 114 "api/tabs/ash_panel_contents.h", | 114 "api/tabs/ash_panel_contents.h", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 | 117 |
| 118 if (use_aura) { | 118 if (use_aura) { |
| 119 deps += [ | 119 deps += [ |
| 120 "//ui/keyboard", | 120 "//ui/keyboard", |
| 121 "//ui/keyboard:keyboard_with_content", |
| 121 "//ui/keyboard:resources", | 122 "//ui/keyboard:resources", |
| 122 ] | 123 ] |
| 123 } | 124 } |
| 124 | 125 |
| 125 if (toolkit_views) { | 126 if (toolkit_views) { |
| 126 deps += [ "//ui/views" ] | 127 deps += [ "//ui/views" ] |
| 127 } | 128 } |
| 128 | 129 |
| 129 if (is_linux) { | 130 if (is_linux) { |
| 130 deps += [ | 131 deps += [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "//chrome") | 204 "//chrome") |
| 204 } | 205 } |
| 205 | 206 |
| 206 if (is_chromeos && use_ozone) { | 207 if (is_chromeos && use_ozone) { |
| 207 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 208 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
| 208 } | 209 } |
| 209 if (!use_ozone) { | 210 if (!use_ozone) { |
| 210 sources -= [ "global_shortcut_listener_ozone.cc" ] | 211 sources -= [ "global_shortcut_listener_ozone.cc" ] |
| 211 } | 212 } |
| 212 } | 213 } |
| OLD | NEW |