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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 "/DELAYLOAD:d3d10_1.dll", | 767 "/DELAYLOAD:d3d10_1.dll", |
768 ] | 768 ] |
769 libs = [ | 769 libs = [ |
770 "d2d1.lib", | 770 "d2d1.lib", |
771 "d3d10_1.lib", | 771 "d3d10_1.lib", |
772 "imm32.lib", | 772 "imm32.lib", |
773 "oleacc.lib", | 773 "oleacc.lib", |
774 ] | 774 ] |
775 } | 775 } |
776 | 776 |
777 if (!is_win || !use_aura) { | 777 if (!use_aura && !is_ios) { |
778 sources -= [ "view_prop_unittest.cc" ] | 778 sources -= [ "view_prop_unittest.cc" ] |
779 } | 779 } |
780 | 780 |
781 if (is_android) { | 781 if (is_android) { |
782 apk_deps = [ "//chrome:resources" ] | 782 apk_deps = [ "//chrome:resources" ] |
783 isolate_file = "ui_base_unittests.isolate" | 783 isolate_file = "ui_base_unittests.isolate" |
784 } | 784 } |
785 | 785 |
786 if (use_pango) { | 786 if (use_pango) { |
787 configs += [ "//build/config/linux:pangocairo" ] | 787 configs += [ "//build/config/linux:pangocairo" ] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 } | 852 } |
853 if (is_mac) { | 853 if (is_mac) { |
854 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 854 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
855 | 855 |
856 if (is_asan && symbol_level == 0) { | 856 if (is_asan && symbol_level == 0) { |
857 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 857 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
858 } | 858 } |
859 } | 859 } |
860 } | 860 } |
861 # TODO(GYP) Mac (ui_base_tests_bundle) | 861 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |