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

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

Issue 2605843002: Add MockInputMethodManager under ui/base/ime/chromeos/ (Closed)
Patch Set: Addressed comments. Created 3 years, 11 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
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//ui/base/ui_features.gni") 10 import("//ui/base/ui_features.gni")
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 "test/ios/ui_view_test_utils.mm", 666 "test/ios/ui_view_test_utils.mm",
667 ] 667 ]
668 } 668 }
669 669
670 if (is_mac) { 670 if (is_mac) {
671 sources += [ "test/user_interactive_test_case_mac.mm" ] 671 sources += [ "test/user_interactive_test_case_mac.mm" ]
672 } else { 672 } else {
673 sources += [ "test/user_interactive_test_case.cc" ] 673 sources += [ "test/user_interactive_test_case.cc" ]
674 } 674 }
675 675
676 if (is_chromeos) {
677 sources += [
678 "ime/chromeos/mock_input_method_manager.cc",
679 "ime/chromeos/mock_input_method_manager.h",
680 ]
681 }
682
676 public_deps = [ 683 public_deps = [
677 ":base", 684 ":base",
678 ] 685 ]
679 deps = [ 686 deps = [
680 "//base", 687 "//base",
681 "//base/test:test_config", 688 "//base/test:test_config",
682 "//skia", 689 "//skia",
683 "//testing/gtest", 690 "//testing/gtest",
684 "//ui/base:ui_data_pack", 691 "//ui/base:ui_data_pack",
685 "//ui/events:events_base", 692 "//ui/events:events_base",
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 if (is_mac) { 974 if (is_mac) {
968 mac_framework_bundle("ui_unittests_framework") { 975 mac_framework_bundle("ui_unittests_framework") {
969 testonly = true 976 testonly = true
970 deps = [ 977 deps = [
971 "//ui/resources:ui_test_pak_bundle_data", 978 "//ui/resources:ui_test_pak_bundle_data",
972 ] 979 ]
973 info_plist = "test/framework-Info.plist" 980 info_plist = "test/framework-Info.plist"
974 output_name = "ui_unittests Framework" 981 output_name = "ui_unittests Framework"
975 } 982 }
976 } 983 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h ('k') | ui/base/ime/chromeos/mock_input_method_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698