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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 # These were already removed in the non-chromeos case. | 759 # These were already removed in the non-chromeos case. |
760 sources -= [ "ime/input_method_chromeos_unittest.cc" ] | 760 sources -= [ "ime/input_method_chromeos_unittest.cc" ] |
761 } | 761 } |
762 } | 762 } |
763 | 763 |
764 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 764 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
765 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 765 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
766 | 766 |
767 deps = [ | 767 deps = [ |
768 "//base", | 768 "//base", |
769 "//base/allocator", | |
770 "//base/test:test_support", | 769 "//base/test:test_support", |
771 "//net", | 770 "//net", |
772 "//skia", | 771 "//skia", |
773 "//testing/gmock", | 772 "//testing/gmock", |
774 "//testing/gtest", | 773 "//testing/gtest", |
775 "//third_party/icu", | 774 "//third_party/icu", |
776 "//ui/base", | 775 "//ui/base", |
777 "//ui/base:test_support", | 776 "//ui/base:test_support", |
778 "//ui/events:events_base", | 777 "//ui/events:events_base", |
779 "//ui/events:test_support", | 778 "//ui/events:test_support", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 } | 891 } |
893 if (is_mac) { | 892 if (is_mac) { |
894 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 893 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
895 | 894 |
896 if (is_asan && symbol_level == 0) { | 895 if (is_asan && symbol_level == 0) { |
897 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 896 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
898 } | 897 } |
899 } | 898 } |
900 } | 899 } |
901 # TODO(GYP) Mac (ui_base_tests_bundle) | 900 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |