Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: ui/base/BUILD.gn

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed jbudorick's nits. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698