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

Side by Side Diff: ui/base/BUILD.gn

Issue 1068093002: Refactoring for InputMethodAuraLinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed interactive_ui_tests failure. Created 5 years, 8 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
« no previous file with comments | « chrome/test/BUILD.gn ('k') | ui/base/ime/input_method_auralinux.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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 if (build_ime) { 677 if (build_ime) {
678 sources += [ 678 sources += [
679 "ime/candidate_window_unittest.cc", 679 "ime/candidate_window_unittest.cc",
680 "ime/chromeos/character_composer_unittest.cc", 680 "ime/chromeos/character_composer_unittest.cc",
681 "ime/input_method_base_unittest.cc", 681 "ime/input_method_base_unittest.cc",
682 "ime/input_method_chromeos_unittest.cc", 682 "ime/input_method_chromeos_unittest.cc",
683 "ime/remote_input_method_win_unittest.cc", 683 "ime/remote_input_method_win_unittest.cc",
684 "ime/win/imm32_manager_unittest.cc", 684 "ime/win/imm32_manager_unittest.cc",
685 "ime/win/tsf_input_scope_unittest.cc", 685 "ime/win/tsf_input_scope_unittest.cc",
686 ] 686 ]
687 if (is_linux && use_aura && !is_chromeos) {
688 sources += [ "ime/input_method_auralinux_unittest.cc" ]
689 }
687 if (use_x11) { 690 if (use_x11) {
688 sources += [ "ime/composition_text_util_pango_unittest.cc" ] 691 sources += [ "ime/composition_text_util_pango_unittest.cc" ]
689 } 692 }
690 if (!use_x11 && is_chromeos) { 693 if (!use_x11 && is_chromeos) {
691 # These were already removed in the non-chromeos case. 694 # These were already removed in the non-chromeos case.
692 sources -= [ 695 sources -= [
693 "ime/chromeos/character_composer_unittest.cc", 696 "ime/chromeos/character_composer_unittest.cc",
694 "ime/input_method_chromeos_unittest.cc", 697 "ime/input_method_chromeos_unittest.cc",
695 ] 698 ]
696 } 699 }
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 } 800 }
798 801
799 if (is_chromeos) { 802 if (is_chromeos) {
800 deps += [ 803 deps += [
801 "//chromeos", 804 "//chromeos",
802 "//ui/events:dom4_keycode_converter", 805 "//ui/events:dom4_keycode_converter",
803 ] 806 ]
804 } 807 }
805 } 808 }
806 # TODO(GYP) Mac (ui_base_tests_bundle) 809 # TODO(GYP) Mac (ui_base_tests_bundle)
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | ui/base/ime/input_method_auralinux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698