| OLD | NEW |
| 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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 "test/ui_controls_internal_win.cc", | 629 "test/ui_controls_internal_win.cc", |
| 630 "test/ui_controls_internal_win.h", | 630 "test/ui_controls_internal_win.h", |
| 631 "test/ui_controls_mac.mm", | 631 "test/ui_controls_mac.mm", |
| 632 "test/ui_controls_win.cc", | 632 "test/ui_controls_win.cc", |
| 633 ] | 633 ] |
| 634 | 634 |
| 635 if (!is_ios) { | 635 if (!is_ios) { |
| 636 sources += [ | 636 sources += [ |
| 637 "test/nswindow_fullscreen_notification_waiter.h", | 637 "test/nswindow_fullscreen_notification_waiter.h", |
| 638 "test/nswindow_fullscreen_notification_waiter.mm", | 638 "test/nswindow_fullscreen_notification_waiter.mm", |
| 639 "test/scoped_fake_full_keyboard_access.h", |
| 640 "test/scoped_fake_full_keyboard_access.mm", |
| 639 "test/scoped_fake_nswindow_focus.h", | 641 "test/scoped_fake_nswindow_focus.h", |
| 640 "test/scoped_fake_nswindow_focus.mm", | 642 "test/scoped_fake_nswindow_focus.mm", |
| 641 "test/scoped_fake_nswindow_fullscreen.h", | 643 "test/scoped_fake_nswindow_fullscreen.h", |
| 642 "test/scoped_fake_nswindow_fullscreen.mm", | 644 "test/scoped_fake_nswindow_fullscreen.mm", |
| 643 "test/scoped_preferred_scroller_style_mac.h", | 645 "test/scoped_preferred_scroller_style_mac.h", |
| 644 "test/scoped_preferred_scroller_style_mac.mm", | 646 "test/scoped_preferred_scroller_style_mac.mm", |
| 645 "test/test_clipboard.cc", | 647 "test/test_clipboard.cc", |
| 646 "test/test_clipboard.h", | 648 "test/test_clipboard.h", |
| 647 "test/windowed_nsnotification_observer.h", | 649 "test/windowed_nsnotification_observer.h", |
| 648 "test/windowed_nsnotification_observer.mm", | 650 "test/windowed_nsnotification_observer.mm", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 if (is_mac) { | 955 if (is_mac) { |
| 954 mac_framework_bundle("ui_unittests_framework") { | 956 mac_framework_bundle("ui_unittests_framework") { |
| 955 testonly = true | 957 testonly = true |
| 956 deps = [ | 958 deps = [ |
| 957 "//ui/resources:ui_test_pak_bundle_data", | 959 "//ui/resources:ui_test_pak_bundle_data", |
| 958 ] | 960 ] |
| 959 info_plist = "test/framework-Info.plist" | 961 info_plist = "test/framework-Info.plist" |
| 960 output_name = "ui_unittests Framework" | 962 output_name = "ui_unittests Framework" |
| 961 } | 963 } |
| 962 } | 964 } |
| OLD | NEW |