| 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/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 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 | 10 |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 ] | 619 ] |
| 620 | 620 |
| 621 if (!is_ios) { | 621 if (!is_ios) { |
| 622 sources += [ | 622 sources += [ |
| 623 "test/nswindow_fullscreen_notification_waiter.h", | 623 "test/nswindow_fullscreen_notification_waiter.h", |
| 624 "test/nswindow_fullscreen_notification_waiter.mm", | 624 "test/nswindow_fullscreen_notification_waiter.mm", |
| 625 "test/scoped_fake_nswindow_focus.h", | 625 "test/scoped_fake_nswindow_focus.h", |
| 626 "test/scoped_fake_nswindow_focus.mm", | 626 "test/scoped_fake_nswindow_focus.mm", |
| 627 "test/scoped_fake_nswindow_fullscreen.h", | 627 "test/scoped_fake_nswindow_fullscreen.h", |
| 628 "test/scoped_fake_nswindow_fullscreen.mm", | 628 "test/scoped_fake_nswindow_fullscreen.mm", |
| 629 "test/scoped_preferred_scroller_style_legacy_mac.h", | 629 "test/scoped_preferred_scroller_style_mac.h", |
| 630 "test/scoped_preferred_scroller_style_legacy_mac.mm", | 630 "test/scoped_preferred_scroller_style_mac.mm", |
| 631 "test/test_clipboard.cc", | 631 "test/test_clipboard.cc", |
| 632 "test/test_clipboard.h", | 632 "test/test_clipboard.h", |
| 633 "test/windowed_nsnotification_observer.h", | 633 "test/windowed_nsnotification_observer.h", |
| 634 "test/windowed_nsnotification_observer.mm", | 634 "test/windowed_nsnotification_observer.mm", |
| 635 ] | 635 ] |
| 636 } else { | 636 } else { |
| 637 sources += [ | 637 sources += [ |
| 638 "test/ios/keyboard_appearance_listener.h", | 638 "test/ios/keyboard_appearance_listener.h", |
| 639 "test/ios/keyboard_appearance_listener.mm", | 639 "test/ios/keyboard_appearance_listener.mm", |
| 640 "test/ios/ui_view_test_utils.h", | 640 "test/ios/ui_view_test_utils.h", |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 } | 913 } |
| 914 if (is_mac) { | 914 if (is_mac) { |
| 915 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 915 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 916 | 916 |
| 917 if (is_asan && symbol_level == 0) { | 917 if (is_asan && symbol_level == 0) { |
| 918 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 918 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 919 } | 919 } |
| 920 } | 920 } |
| 921 } | 921 } |
| 922 # TODO(GYP) Mac (ui_base_tests_bundle) | 922 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |