| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 | 864 |
| 865 if (is_win) { | 865 if (is_win) { |
| 866 sources += [ "view_prop_unittest.cc" ] | 866 sources += [ "view_prop_unittest.cc" ] |
| 867 } | 867 } |
| 868 | 868 |
| 869 if (is_android) { | 869 if (is_android) { |
| 870 deps += [ | 870 deps += [ |
| 871 "//chrome:resources", | 871 "//chrome:resources", |
| 872 "//ui/android:ui_java", | 872 "//ui/android:ui_java", |
| 873 ] | 873 ] |
| 874 isolate_file = "ui_base_unittests.isolate" | 874 isolate_file = "ui_base_tests.isolate" |
| 875 } | 875 } |
| 876 | 876 |
| 877 if (use_pango) { | 877 if (use_pango) { |
| 878 configs += [ "//build/config/linux:pangocairo" ] | 878 configs += [ "//build/config/linux:pangocairo" ] |
| 879 } | 879 } |
| 880 | 880 |
| 881 if (use_x11) { | 881 if (use_x11) { |
| 882 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] | 882 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] |
| 883 | 883 |
| 884 configs += [ "//build/config/linux:x11" ] | 884 configs += [ "//build/config/linux:x11" ] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 if (is_mac) { | 954 if (is_mac) { |
| 955 mac_framework_bundle("ui_unittests_framework") { | 955 mac_framework_bundle("ui_unittests_framework") { |
| 956 testonly = true | 956 testonly = true |
| 957 deps = [ | 957 deps = [ |
| 958 "//ui/resources:ui_test_pak_bundle_data", | 958 "//ui/resources:ui_test_pak_bundle_data", |
| 959 ] | 959 ] |
| 960 info_plist = "test/framework-Info.plist" | 960 info_plist = "test/framework-Info.plist" |
| 961 output_name = "ui_unittests Framework" | 961 output_name = "ui_unittests Framework" |
| 962 } | 962 } |
| 963 } | 963 } |
| OLD | NEW |