| 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 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 ] | 592 ] |
| 593 | 593 |
| 594 if (!is_ios) { | 594 if (!is_ios) { |
| 595 sources += [ | 595 sources += [ |
| 596 "test/nswindow_fullscreen_notification_waiter.h", | 596 "test/nswindow_fullscreen_notification_waiter.h", |
| 597 "test/nswindow_fullscreen_notification_waiter.mm", | 597 "test/nswindow_fullscreen_notification_waiter.mm", |
| 598 "test/scoped_fake_nswindow_focus.h", | 598 "test/scoped_fake_nswindow_focus.h", |
| 599 "test/scoped_fake_nswindow_focus.mm", | 599 "test/scoped_fake_nswindow_focus.mm", |
| 600 "test/scoped_fake_nswindow_fullscreen.h", | 600 "test/scoped_fake_nswindow_fullscreen.h", |
| 601 "test/scoped_fake_nswindow_fullscreen.mm", | 601 "test/scoped_fake_nswindow_fullscreen.mm", |
| 602 "test/scoped_preferred_scroller_style_legacy_mac.h", |
| 603 "test/scoped_preferred_scroller_style_legacy_mac.mm", |
| 602 "test/test_clipboard.cc", | 604 "test/test_clipboard.cc", |
| 603 "test/test_clipboard.h", | 605 "test/test_clipboard.h", |
| 604 "test/windowed_nsnotification_observer.h", | 606 "test/windowed_nsnotification_observer.h", |
| 605 "test/windowed_nsnotification_observer.mm", | 607 "test/windowed_nsnotification_observer.mm", |
| 606 ] | 608 ] |
| 607 } else { | 609 } else { |
| 608 sources += [ | 610 sources += [ |
| 609 "test/ios/keyboard_appearance_listener.h", | 611 "test/ios/keyboard_appearance_listener.h", |
| 610 "test/ios/keyboard_appearance_listener.mm", | 612 "test/ios/keyboard_appearance_listener.mm", |
| 611 "test/ios/ui_view_test_utils.h", | 613 "test/ios/ui_view_test_utils.h", |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 } | 894 } |
| 893 if (is_mac) { | 895 if (is_mac) { |
| 894 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 896 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 895 | 897 |
| 896 if (is_asan && symbol_level == 0) { | 898 if (is_asan && symbol_level == 0) { |
| 897 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 899 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 898 } | 900 } |
| 899 } | 901 } |
| 900 } | 902 } |
| 901 # TODO(GYP) Mac (ui_base_tests_bundle) | 903 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |