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

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

Issue 1671313002: MacViews: Overlay Scrollbars with Show/Hide Animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/config/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 ] 618 ]
619 619
620 if (!is_ios) { 620 if (!is_ios) {
621 sources += [ 621 sources += [
622 "test/nswindow_fullscreen_notification_waiter.h", 622 "test/nswindow_fullscreen_notification_waiter.h",
623 "test/nswindow_fullscreen_notification_waiter.mm", 623 "test/nswindow_fullscreen_notification_waiter.mm",
624 "test/scoped_fake_nswindow_focus.h", 624 "test/scoped_fake_nswindow_focus.h",
625 "test/scoped_fake_nswindow_focus.mm", 625 "test/scoped_fake_nswindow_focus.mm",
626 "test/scoped_fake_nswindow_fullscreen.h", 626 "test/scoped_fake_nswindow_fullscreen.h",
627 "test/scoped_fake_nswindow_fullscreen.mm", 627 "test/scoped_fake_nswindow_fullscreen.mm",
628 "test/scoped_preferred_scroller_style_legacy_mac.h", 628 "test/scoped_preferred_scroller_style_mac.h",
629 "test/scoped_preferred_scroller_style_legacy_mac.mm", 629 "test/scoped_preferred_scroller_style_mac.mm",
630 "test/test_clipboard.cc", 630 "test/test_clipboard.cc",
631 "test/test_clipboard.h", 631 "test/test_clipboard.h",
632 "test/windowed_nsnotification_observer.h", 632 "test/windowed_nsnotification_observer.h",
633 "test/windowed_nsnotification_observer.mm", 633 "test/windowed_nsnotification_observer.mm",
634 ] 634 ]
635 } else { 635 } else {
636 sources += [ 636 sources += [
637 "test/ios/keyboard_appearance_listener.h", 637 "test/ios/keyboard_appearance_listener.h",
638 "test/ios/keyboard_appearance_listener.mm", 638 "test/ios/keyboard_appearance_listener.mm",
639 "test/ios/ui_view_test_utils.h", 639 "test/ios/ui_view_test_utils.h",
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 } 912 }
913 if (is_mac) { 913 if (is_mac) {
914 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] 914 data += [ "$root_out_dir/ui_unittests Framework.framework/" ]
915 915
916 if (is_asan && symbol_level == 0) { 916 if (is_asan && symbol_level == 0) {
917 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] 917 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ]
918 } 918 }
919 } 919 }
920 } 920 }
921 # TODO(GYP) Mac (ui_base_tests_bundle) 921 # TODO(GYP) Mac (ui_base_tests_bundle)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698