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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 "imm32.lib", | 808 "imm32.lib", |
809 "oleacc.lib", | 809 "oleacc.lib", |
810 ] | 810 ] |
811 } | 811 } |
812 | 812 |
813 if (is_win) { | 813 if (is_win) { |
814 sources += [ "view_prop_unittest.cc" ] | 814 sources += [ "view_prop_unittest.cc" ] |
815 } | 815 } |
816 | 816 |
817 if (is_android) { | 817 if (is_android) { |
818 apk_deps = [ | 818 deps += [ |
819 "//chrome:resources", | 819 "//chrome:resources", |
820 "//ui/android:ui_java", | 820 "//ui/android:ui_java", |
821 ] | 821 ] |
822 isolate_file = "ui_base_unittests.isolate" | 822 isolate_file = "ui_base_unittests.isolate" |
823 } | 823 } |
824 | 824 |
825 if (use_pango) { | 825 if (use_pango) { |
826 configs += [ "//build/config/linux:pangocairo" ] | 826 configs += [ "//build/config/linux:pangocairo" ] |
827 } | 827 } |
828 | 828 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
891 } | 891 } |
892 if (is_mac) { | 892 if (is_mac) { |
893 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 893 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
894 | 894 |
895 if (is_asan && symbol_level == 0) { | 895 if (is_asan && symbol_level == 0) { |
896 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 896 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
897 } | 897 } |
898 } | 898 } |
899 } | 899 } |
900 # TODO(GYP) Mac (ui_base_tests_bundle) | 900 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |