| 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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 | 877 |
| 878 if (is_android) { | 878 if (is_android) { |
| 879 deps += [ | 879 deps += [ |
| 880 "//chrome:resources", | 880 "//chrome:resources", |
| 881 "//ui/android:ui_java", | 881 "//ui/android:ui_java", |
| 882 ] | 882 ] |
| 883 isolate_file = "ui_base_tests.isolate" | 883 isolate_file = "ui_base_tests.isolate" |
| 884 } | 884 } |
| 885 | 885 |
| 886 if (use_pango) { | 886 if (use_pango) { |
| 887 configs += [ "//build/config/linux:pangocairo" ] | 887 configs += [ "//build/config/linux/pangocairo" ] |
| 888 } | 888 } |
| 889 | 889 |
| 890 if (use_x11) { | 890 if (use_x11) { |
| 891 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] | 891 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] |
| 892 | 892 |
| 893 configs += [ "//build/config/linux:x11" ] | 893 configs += [ "//build/config/linux:x11" ] |
| 894 | 894 |
| 895 deps += [ | 895 deps += [ |
| 896 "//ui/events/platform/x11", | 896 "//ui/events/platform/x11", |
| 897 "//ui/gfx/x", | 897 "//ui/gfx/x", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 if (is_mac) { | 963 if (is_mac) { |
| 964 mac_framework_bundle("ui_unittests_framework") { | 964 mac_framework_bundle("ui_unittests_framework") { |
| 965 testonly = true | 965 testonly = true |
| 966 deps = [ | 966 deps = [ |
| 967 "//ui/resources:ui_test_pak_bundle_data", | 967 "//ui/resources:ui_test_pak_bundle_data", |
| 968 ] | 968 ] |
| 969 info_plist = "test/framework-Info.plist" | 969 info_plist = "test/framework-Info.plist" |
| 970 output_name = "ui_unittests Framework" | 970 output_name = "ui_unittests Framework" |
| 971 } | 971 } |
| 972 } | 972 } |
| OLD | NEW |