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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/test_clipboard.cc", | 602 "test/test_clipboard.cc", |
603 "test/test_clipboard.h", | 603 "test/test_clipboard.h", |
604 "test/windowed_nsnotification_observer.h", | 604 "test/windowed_nsnotification_observer.h", |
605 "test/windowed_nsnotification_observer.mm", | 605 "test/windowed_nsnotification_observer.mm", |
606 ] | 606 ] |
| 607 } else { |
| 608 sources += [ |
| 609 "test/ios/keyboard_appearance_listener.h", |
| 610 "test/ios/keyboard_appearance_listener.mm", |
| 611 "test/ios/ui_view_test_utils.h", |
| 612 "test/ios/ui_view_test_utils.mm", |
| 613 ] |
607 } | 614 } |
608 | 615 |
609 public_deps = [ | 616 public_deps = [ |
610 ":base", | 617 ":base", |
611 ] | 618 ] |
612 deps = [ | 619 deps = [ |
613 "//base", | 620 "//base", |
614 "//skia", | 621 "//skia", |
615 "//testing/gtest", | 622 "//testing/gtest", |
616 "//ui/events:events_base", | 623 "//ui/events:events_base", |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 } | 888 } |
882 if (is_mac) { | 889 if (is_mac) { |
883 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 890 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
884 | 891 |
885 if (is_asan && symbol_level == 0) { | 892 if (is_asan && symbol_level == 0) { |
886 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 893 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
887 } | 894 } |
888 } | 895 } |
889 } | 896 } |
890 # TODO(GYP) Mac (ui_base_tests_bundle) | 897 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |