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