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

Side by Side Diff: extensions/shell/BUILD.gn

Issue 2580733002: AppShell: Create input method and handle key events (Closed)
Patch Set: nits Created 4 years 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
« no previous file with comments | « no previous file | extensions/shell/browser/input_method_event_handler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/util/process_version.gni") 7 import("//build/util/process_version.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "renderer/shell_content_renderer_client.cc", 148 "renderer/shell_content_renderer_client.cc",
149 "renderer/shell_content_renderer_client.h", 149 "renderer/shell_content_renderer_client.h",
150 "renderer/shell_extensions_renderer_client.cc", 150 "renderer/shell_extensions_renderer_client.cc",
151 "renderer/shell_extensions_renderer_client.h", 151 "renderer/shell_extensions_renderer_client.h",
152 "utility/shell_content_utility_client.cc", 152 "utility/shell_content_utility_client.cc",
153 "utility/shell_content_utility_client.h", 153 "utility/shell_content_utility_client.h",
154 ] 154 ]
155 155
156 if (use_aura) { 156 if (use_aura) {
157 sources += [ 157 sources += [
158 "browser/input_method_event_handler.cc",
159 "browser/input_method_event_handler.h",
158 "browser/shell_app_window_client_aura.cc", 160 "browser/shell_app_window_client_aura.cc",
159 "browser/shell_desktop_controller_aura.cc", 161 "browser/shell_desktop_controller_aura.cc",
160 "browser/shell_desktop_controller_aura.h", 162 "browser/shell_desktop_controller_aura.h",
161 "browser/shell_native_app_window_aura.cc", 163 "browser/shell_native_app_window_aura.cc",
162 "browser/shell_native_app_window_aura.h", 164 "browser/shell_native_app_window_aura.h",
163 "browser/shell_screen.cc", 165 "browser/shell_screen.cc",
164 "browser/shell_screen.h", 166 "browser/shell_screen.h",
165 ] 167 ]
166 deps += [ "//ui/wm" ] 168 deps += [ "//ui/wm" ]
167 } 169 }
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 "//extensions/browser", 351 "//extensions/browser",
350 ] 352 ]
351 353
352 if (is_chromeos) { 354 if (is_chromeos) {
353 deps += [ 355 deps += [
354 "//chromeos:test_support", 356 "//chromeos:test_support",
355 "//components/keyed_service/content", 357 "//components/keyed_service/content",
356 ] 358 ]
357 } 359 }
358 } 360 }
OLDNEW
« no previous file with comments | « no previous file | extensions/shell/browser/input_method_event_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698