| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 "//ui/events:events_base", | 303 "//ui/events:events_base", |
| 304 "//ui/gfx", | 304 "//ui/gfx", |
| 305 "//ui/gfx/geometry", | 305 "//ui/gfx/geometry", |
| 306 ] | 306 ] |
| 307 deps = [ | 307 deps = [ |
| 308 "//base/third_party/dynamic_annotations", | 308 "//base/third_party/dynamic_annotations", |
| 309 "//base:base_static", | 309 "//base:base_static", |
| 310 "//base:i18n", | 310 "//base:i18n", |
| 311 "//net", | 311 "//net", |
| 312 "//third_party/icu", | 312 "//third_party/icu", |
| 313 "//ui/events", |
| 313 "//ui/events/devices", | 314 "//ui/events/devices", |
| 314 "//ui/resources", | 315 "//ui/resources", |
| 315 "//ui/strings", | 316 "//ui/strings", |
| 316 "//url", | 317 "//url", |
| 317 ] | 318 ] |
| 318 | 319 |
| 319 if (build_ime) { | 320 if (build_ime) { |
| 320 if (!is_android) { | |
| 321 deps += [ "//ui/events" ] | |
| 322 } | |
| 323 | |
| 324 sources += [ | 321 sources += [ |
| 325 "ime/candidate_window.cc", | 322 "ime/candidate_window.cc", |
| 326 "ime/candidate_window.h", | 323 "ime/candidate_window.h", |
| 327 "ime/chromeos/character_composer.cc", | 324 "ime/chromeos/character_composer.cc", |
| 328 "ime/chromeos/character_composer.h", | 325 "ime/chromeos/character_composer.h", |
| 329 "ime/chromeos/component_extension_ime_manager.cc", | 326 "ime/chromeos/component_extension_ime_manager.cc", |
| 330 "ime/chromeos/component_extension_ime_manager.h", | 327 "ime/chromeos/component_extension_ime_manager.h", |
| 331 "ime/chromeos/composition_text.cc", | 328 "ime/chromeos/composition_text.cc", |
| 332 "ime/chromeos/composition_text.h", | 329 "ime/chromeos/composition_text.h", |
| 333 "ime/chromeos/extension_ime_util.cc", | 330 "ime/chromeos/extension_ime_util.cc", |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 # TODO(GYP) Mac (ui_base_tests_bundle) | 933 # TODO(GYP) Mac (ui_base_tests_bundle) |
| 937 if (is_android) { | 934 if (is_android) { |
| 938 unittest_apk("ui_base_unittests_apk") { | 935 unittest_apk("ui_base_unittests_apk") { |
| 939 unittests_dep = ":ui_base_unittests" | 936 unittests_dep = ":ui_base_unittests" |
| 940 deps = [ | 937 deps = [ |
| 941 ":ui_base_unittests", | 938 ":ui_base_unittests", |
| 942 "//chrome:resources", | 939 "//chrome:resources", |
| 943 ] | 940 ] |
| 944 } | 941 } |
| 945 } | 942 } |
| OLD | NEW |