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 { | |
Eugene But (OOO till 7-30)
2015/10/08 16:10:41
Optional NIT: Maybe flip if-else blocks? Positive
| |
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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
878 } | 885 } |
879 if (is_mac) { | 886 if (is_mac) { |
880 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 887 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
881 | 888 |
882 if (is_asan && symbol_level == 0) { | 889 if (is_asan && symbol_level == 0) { |
883 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 890 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
884 } | 891 } |
885 } | 892 } |
886 } | 893 } |
887 # TODO(GYP) Mac (ui_base_tests_bundle) | 894 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |