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/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 Loading... |
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 Loading... |
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 } |
OLD | NEW |