| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 "//ui/events:events_base", | 297 "//ui/events:events_base", |
| 298 "//ui/gfx", | 298 "//ui/gfx", |
| 299 "//ui/gfx/geometry", | 299 "//ui/gfx/geometry", |
| 300 ] | 300 ] |
| 301 deps = [ | 301 deps = [ |
| 302 "//base/third_party/dynamic_annotations", | 302 "//base/third_party/dynamic_annotations", |
| 303 "//base:base_static", | 303 "//base:base_static", |
| 304 "//base:i18n", | 304 "//base:i18n", |
| 305 "//net", | 305 "//net", |
| 306 "//third_party/icu", | 306 "//third_party/icu", |
| 307 "//ui/events", |
| 307 "//ui/events/devices", | 308 "//ui/events/devices", |
| 308 "//ui/resources", | 309 "//ui/resources", |
| 309 "//ui/strings", | 310 "//ui/strings", |
| 310 "//url", | 311 "//url", |
| 311 ] | 312 ] |
| 312 | 313 |
| 313 if (build_ime) { | 314 if (build_ime) { |
| 314 if (!is_android) { | |
| 315 deps += [ "//ui/events" ] | |
| 316 } | |
| 317 | |
| 318 sources += [ | 315 sources += [ |
| 319 "ime/candidate_window.cc", | 316 "ime/candidate_window.cc", |
| 320 "ime/candidate_window.h", | 317 "ime/candidate_window.h", |
| 321 "ime/chromeos/character_composer.cc", | 318 "ime/chromeos/character_composer.cc", |
| 322 "ime/chromeos/character_composer.h", | 319 "ime/chromeos/character_composer.h", |
| 323 "ime/chromeos/component_extension_ime_manager.cc", | 320 "ime/chromeos/component_extension_ime_manager.cc", |
| 324 "ime/chromeos/component_extension_ime_manager.h", | 321 "ime/chromeos/component_extension_ime_manager.h", |
| 325 "ime/chromeos/composition_text.cc", | 322 "ime/chromeos/composition_text.cc", |
| 326 "ime/chromeos/composition_text.h", | 323 "ime/chromeos/composition_text.h", |
| 327 "ime/chromeos/extension_ime_util.cc", | 324 "ime/chromeos/extension_ime_util.cc", |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 # TODO(GYP) Mac (ui_base_tests_bundle) | 910 # TODO(GYP) Mac (ui_base_tests_bundle) |
| 914 if (is_android) { | 911 if (is_android) { |
| 915 unittest_apk("ui_base_unittests_apk") { | 912 unittest_apk("ui_base_unittests_apk") { |
| 916 unittests_dep = ":ui_base_unittests" | 913 unittests_dep = ":ui_base_unittests" |
| 917 deps = [ | 914 deps = [ |
| 918 ":ui_base_unittests", | 915 ":ui_base_unittests", |
| 919 "//chrome:resources", | 916 "//chrome:resources", |
| 920 ] | 917 ] |
| 921 } | 918 } |
| 922 } | 919 } |
| OLD | NEW |