| 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 "oleacc.lib", | 754 "oleacc.lib", |
| 755 ] | 755 ] |
| 756 } | 756 } |
| 757 | 757 |
| 758 if (!is_win || !use_aura) { | 758 if (!is_win || !use_aura) { |
| 759 sources -= [ "view_prop_unittest.cc" ] | 759 sources -= [ "view_prop_unittest.cc" ] |
| 760 } | 760 } |
| 761 | 761 |
| 762 if (is_android) { | 762 if (is_android) { |
| 763 apk_deps = [ "//chrome:resources" ] | 763 apk_deps = [ "//chrome:resources" ] |
| 764 isolate_file = "ui_base_unittests.isolate" |
| 764 } | 765 } |
| 765 | 766 |
| 766 if (use_pango) { | 767 if (use_pango) { |
| 767 configs += [ "//build/config/linux:pangocairo" ] | 768 configs += [ "//build/config/linux:pangocairo" ] |
| 768 } | 769 } |
| 769 | 770 |
| 770 if (use_x11) { | 771 if (use_x11) { |
| 771 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] | 772 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] |
| 772 | 773 |
| 773 configs += [ "//build/config/linux:x11" ] | 774 configs += [ "//build/config/linux:x11" ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 } | 807 } |
| 807 | 808 |
| 808 if (is_chromeos) { | 809 if (is_chromeos) { |
| 809 deps += [ | 810 deps += [ |
| 810 "//chromeos", | 811 "//chromeos", |
| 811 "//ui/events:dom_keycode_converter", | 812 "//ui/events:dom_keycode_converter", |
| 812 ] | 813 ] |
| 813 } | 814 } |
| 814 } | 815 } |
| 815 # TODO(GYP) Mac (ui_base_tests_bundle) | 816 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |