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

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

Issue 1894383002: MacViews: Implement Full Keyboard Access. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SetFocusBehavior
Patch Set: Address review comments. Created 4 years, 7 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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 "test/ui_controls_internal_win.cc", 637 "test/ui_controls_internal_win.cc",
638 "test/ui_controls_internal_win.h", 638 "test/ui_controls_internal_win.h",
639 "test/ui_controls_mac.mm", 639 "test/ui_controls_mac.mm",
640 "test/ui_controls_win.cc", 640 "test/ui_controls_win.cc",
641 ] 641 ]
642 642
643 if (!is_ios) { 643 if (!is_ios) {
644 sources += [ 644 sources += [
645 "test/nswindow_fullscreen_notification_waiter.h", 645 "test/nswindow_fullscreen_notification_waiter.h",
646 "test/nswindow_fullscreen_notification_waiter.mm", 646 "test/nswindow_fullscreen_notification_waiter.mm",
647 "test/scoped_fake_full_keyboard_access.h",
648 "test/scoped_fake_full_keyboard_access.mm",
647 "test/scoped_fake_nswindow_focus.h", 649 "test/scoped_fake_nswindow_focus.h",
648 "test/scoped_fake_nswindow_focus.mm", 650 "test/scoped_fake_nswindow_focus.mm",
649 "test/scoped_fake_nswindow_fullscreen.h", 651 "test/scoped_fake_nswindow_fullscreen.h",
650 "test/scoped_fake_nswindow_fullscreen.mm", 652 "test/scoped_fake_nswindow_fullscreen.mm",
651 "test/scoped_preferred_scroller_style_mac.h", 653 "test/scoped_preferred_scroller_style_mac.h",
652 "test/scoped_preferred_scroller_style_mac.mm", 654 "test/scoped_preferred_scroller_style_mac.mm",
653 "test/test_clipboard.cc", 655 "test/test_clipboard.cc",
654 "test/test_clipboard.h", 656 "test/test_clipboard.h",
655 "test/windowed_nsnotification_observer.h", 657 "test/windowed_nsnotification_observer.h",
656 "test/windowed_nsnotification_observer.mm", 658 "test/windowed_nsnotification_observer.mm",
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 if (is_mac) { 964 if (is_mac) {
963 mac_framework_bundle("ui_unittests_framework") { 965 mac_framework_bundle("ui_unittests_framework") {
964 testonly = true 966 testonly = true
965 deps = [ 967 deps = [
966 "//ui/resources:ui_test_pak_bundle_data", 968 "//ui/resources:ui_test_pak_bundle_data",
967 ] 969 ]
968 info_plist = "test/framework-Info.plist" 970 info_plist = "test/framework-Info.plist"
969 output_name = "ui_unittests Framework" 971 output_name = "ui_unittests Framework"
970 } 972 }
971 } 973 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698