| 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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 | 885 |
| 886 if (use_x11) { | 886 if (use_x11) { |
| 887 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] | 887 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] |
| 888 | 888 |
| 889 configs += [ "//build/config/linux:x11" ] | 889 configs += [ "//build/config/linux:x11" ] |
| 890 | 890 |
| 891 deps += [ | 891 deps += [ |
| 892 "//ui/events/platform/x11", | 892 "//ui/events/platform/x11", |
| 893 "//ui/gfx/x", | 893 "//ui/gfx/x", |
| 894 ] | 894 ] |
| 895 | |
| 896 data_deps += [ "//tools/xdisplaycheck" ] | |
| 897 } | 895 } |
| 898 | 896 |
| 899 if (is_mac) { | 897 if (is_mac) { |
| 900 deps += [ | 898 deps += [ |
| 901 ":ui_unittests_framework", | 899 ":ui_unittests_framework", |
| 902 "//third_party/mozilla", | 900 "//third_party/mozilla", |
| 903 ] | 901 ] |
| 904 } | 902 } |
| 905 | 903 |
| 906 if (use_aura || toolkit_views) { | 904 if (use_aura || toolkit_views) { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 if (is_mac) { | 957 if (is_mac) { |
| 960 mac_framework_bundle("ui_unittests_framework") { | 958 mac_framework_bundle("ui_unittests_framework") { |
| 961 testonly = true | 959 testonly = true |
| 962 deps = [ | 960 deps = [ |
| 963 "//ui/resources:ui_test_pak_bundle_data", | 961 "//ui/resources:ui_test_pak_bundle_data", |
| 964 ] | 962 ] |
| 965 info_plist = "test/framework-Info.plist" | 963 info_plist = "test/framework-Info.plist" |
| 966 output_name = "ui_unittests Framework" | 964 output_name = "ui_unittests Framework" |
| 967 } | 965 } |
| 968 } | 966 } |
| OLD | NEW |