Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 1392713002: Extract content dependency from keyboard code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/extensions/chrome_component_extension_resource_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698