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

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

Issue 1250913002: patch from chinmaygarde@ to make progress on mac, ios. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks needed to get base_unittests to compile Created 5 years, 5 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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "/DELAYLOAD:d3d10_1.dll", 767 "/DELAYLOAD:d3d10_1.dll",
768 ] 768 ]
769 libs = [ 769 libs = [
770 "d2d1.lib", 770 "d2d1.lib",
771 "d3d10_1.lib", 771 "d3d10_1.lib",
772 "imm32.lib", 772 "imm32.lib",
773 "oleacc.lib", 773 "oleacc.lib",
774 ] 774 ]
775 } 775 }
776 776
777 if (!is_win || !use_aura) { 777 if (!use_aura && !is_ios) {
778 sources -= [ "view_prop_unittest.cc" ] 778 sources -= [ "view_prop_unittest.cc" ]
779 } 779 }
780 780
781 if (is_android) { 781 if (is_android) {
782 apk_deps = [ "//chrome:resources" ] 782 apk_deps = [ "//chrome:resources" ]
783 isolate_file = "ui_base_unittests.isolate" 783 isolate_file = "ui_base_unittests.isolate"
784 } 784 }
785 785
786 if (use_pango) { 786 if (use_pango) {
787 configs += [ "//build/config/linux:pangocairo" ] 787 configs += [ "//build/config/linux:pangocairo" ]
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 } 852 }
853 if (is_mac) { 853 if (is_mac) {
854 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] 854 data += [ "$root_out_dir/ui_unittests Framework.framework/" ]
855 855
856 if (is_asan && symbol_level == 0) { 856 if (is_asan && symbol_level == 0) {
857 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] 857 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ]
858 } 858 }
859 } 859 }
860 } 860 }
861 # TODO(GYP) Mac (ui_base_tests_bundle) 861 # TODO(GYP) Mac (ui_base_tests_bundle)
OLDNEW
« testing/test.gni ('K') | « third_party/sqlite/BUILD.gn ('k') | ui/gfx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698