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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 "oleacc.lib", | 748 "oleacc.lib", |
749 ] | 749 ] |
750 } | 750 } |
751 | 751 |
752 if (!is_win || !use_aura) { | 752 if (!is_win || !use_aura) { |
753 sources -= [ "view_prop_unittest.cc" ] | 753 sources -= [ "view_prop_unittest.cc" ] |
754 } | 754 } |
755 | 755 |
756 if (is_android) { | 756 if (is_android) { |
757 apk_deps = [ "//chrome:resources" ] | 757 apk_deps = [ "//chrome:resources" ] |
| 758 isolate_file = "ui_base_unittests.isolate" |
758 } | 759 } |
759 | 760 |
760 if (use_pango) { | 761 if (use_pango) { |
761 configs += [ "//build/config/linux:pangocairo" ] | 762 configs += [ "//build/config/linux:pangocairo" ] |
762 } | 763 } |
763 | 764 |
764 if (use_x11) { | 765 if (use_x11) { |
765 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] | 766 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] |
766 | 767 |
767 configs += [ "//build/config/linux:x11" ] | 768 configs += [ "//build/config/linux:x11" ] |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 } | 801 } |
801 | 802 |
802 if (is_chromeos) { | 803 if (is_chromeos) { |
803 deps += [ | 804 deps += [ |
804 "//chromeos", | 805 "//chromeos", |
805 "//ui/events:dom_keycode_converter", | 806 "//ui/events:dom_keycode_converter", |
806 ] | 807 ] |
807 } | 808 } |
808 } | 809 } |
809 # TODO(GYP) Mac (ui_base_tests_bundle) | 810 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |