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

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

Issue 2382963002: Views: Add two disabled tests for invoking the CC unmask prompt dialog. (Closed)
Patch Set: Switch to CreditCardExpiry to enum class : uint8_t. Created 4 years, 2 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 testonly = true 620 testonly = true
621 sources = [ 621 sources = [
622 "test/material_design_controller_test_api.cc", 622 "test/material_design_controller_test_api.cc",
623 "test/material_design_controller_test_api.h", 623 "test/material_design_controller_test_api.h",
624 "test/ui_controls.h", 624 "test/ui_controls.h",
625 "test/ui_controls_aura.cc", 625 "test/ui_controls_aura.cc",
626 "test/ui_controls_internal_win.cc", 626 "test/ui_controls_internal_win.cc",
627 "test/ui_controls_internal_win.h", 627 "test/ui_controls_internal_win.h",
628 "test/ui_controls_mac.mm", 628 "test/ui_controls_mac.mm",
629 "test/ui_controls_win.cc", 629 "test/ui_controls_win.cc",
630 "test/user_interactive_test_case.h",
630 ] 631 ]
631 632
632 if (!is_ios) { 633 if (!is_ios) {
633 sources += [ 634 sources += [
634 "test/nswindow_fullscreen_notification_waiter.h", 635 "test/nswindow_fullscreen_notification_waiter.h",
635 "test/nswindow_fullscreen_notification_waiter.mm", 636 "test/nswindow_fullscreen_notification_waiter.mm",
636 "test/scoped_fake_full_keyboard_access.h", 637 "test/scoped_fake_full_keyboard_access.h",
637 "test/scoped_fake_full_keyboard_access.mm", 638 "test/scoped_fake_full_keyboard_access.mm",
638 "test/scoped_fake_nswindow_focus.h", 639 "test/scoped_fake_nswindow_focus.h",
639 "test/scoped_fake_nswindow_focus.mm", 640 "test/scoped_fake_nswindow_focus.mm",
640 "test/scoped_fake_nswindow_fullscreen.h", 641 "test/scoped_fake_nswindow_fullscreen.h",
641 "test/scoped_fake_nswindow_fullscreen.mm", 642 "test/scoped_fake_nswindow_fullscreen.mm",
642 "test/scoped_preferred_scroller_style_mac.h", 643 "test/scoped_preferred_scroller_style_mac.h",
643 "test/scoped_preferred_scroller_style_mac.mm", 644 "test/scoped_preferred_scroller_style_mac.mm",
644 "test/test_clipboard.cc", 645 "test/test_clipboard.cc",
645 "test/test_clipboard.h", 646 "test/test_clipboard.h",
646 "test/windowed_nsnotification_observer.h", 647 "test/windowed_nsnotification_observer.h",
647 "test/windowed_nsnotification_observer.mm", 648 "test/windowed_nsnotification_observer.mm",
648 ] 649 ]
649 } else { 650 } else {
650 sources += [ 651 sources += [
651 "test/ios/keyboard_appearance_listener.h", 652 "test/ios/keyboard_appearance_listener.h",
652 "test/ios/keyboard_appearance_listener.mm", 653 "test/ios/keyboard_appearance_listener.mm",
653 "test/ios/ui_view_test_utils.h", 654 "test/ios/ui_view_test_utils.h",
654 "test/ios/ui_view_test_utils.mm", 655 "test/ios/ui_view_test_utils.mm",
655 ] 656 ]
656 } 657 }
657 658
659 if (is_mac) {
660 sources += [ "test/user_interactive_test_case_mac.mm" ]
661 } else {
662 sources += [ "test/user_interactive_test_case.cc" ]
663 }
664
658 public_deps = [ 665 public_deps = [
659 ":base", 666 ":base",
660 ] 667 ]
661 deps = [ 668 deps = [
662 "//base", 669 "//base",
663 "//base/test:test_config", 670 "//base/test:test_config",
664 "//skia", 671 "//skia",
665 "//testing/gtest", 672 "//testing/gtest",
666 "//ui/base:ui_data_pack", 673 "//ui/base:ui_data_pack",
667 "//ui/events:events_base", 674 "//ui/events:events_base",
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 if (is_mac) { 959 if (is_mac) {
953 mac_framework_bundle("ui_unittests_framework") { 960 mac_framework_bundle("ui_unittests_framework") {
954 testonly = true 961 testonly = true
955 deps = [ 962 deps = [
956 "//ui/resources:ui_test_pak_bundle_data", 963 "//ui/resources:ui_test_pak_bundle_data",
957 ] 964 ]
958 info_plist = "test/framework-Info.plist" 965 info_plist = "test/framework-Info.plist"
959 output_name = "ui_unittests Framework" 966 output_name = "ui_unittests Framework"
960 } 967 }
961 } 968 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698