| 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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 deps += [ | 902 deps += [ |
| 903 "//ui/events", | 903 "//ui/events", |
| 904 "//ui/events/platform", | 904 "//ui/events/platform", |
| 905 ] | 905 ] |
| 906 } | 906 } |
| 907 | 907 |
| 908 if (use_x11 && !is_chromeos) { | 908 if (use_x11 && !is_chromeos) { |
| 909 sources += [ | 909 sources += [ |
| 910 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 910 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 911 "x/selection_requestor_unittest.cc", | 911 "x/selection_requestor_unittest.cc", |
| 912 "x/x11_window_cache_unittest.cc", |
| 912 ] | 913 ] |
| 914 |
| 915 deps += [ "//ui/base/x:x_window_cache" ] |
| 913 } | 916 } |
| 914 | 917 |
| 915 if (is_chromeos) { | 918 if (is_chromeos) { |
| 916 deps += [ | 919 deps += [ |
| 917 "//chromeos", | 920 "//chromeos", |
| 918 "//ui/events:dom_keycode_converter", | 921 "//ui/events:dom_keycode_converter", |
| 919 ] | 922 ] |
| 920 } | 923 } |
| 921 | 924 |
| 922 if (is_android || is_linux || is_mac || is_win) { | 925 if (is_android || is_linux || is_mac || is_win) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 952 if (is_mac) { | 955 if (is_mac) { |
| 953 mac_framework_bundle("ui_unittests_framework") { | 956 mac_framework_bundle("ui_unittests_framework") { |
| 954 testonly = true | 957 testonly = true |
| 955 deps = [ | 958 deps = [ |
| 956 "//ui/resources:ui_test_pak_bundle_data", | 959 "//ui/resources:ui_test_pak_bundle_data", |
| 957 ] | 960 ] |
| 958 info_plist = "test/framework-Info.plist" | 961 info_plist = "test/framework-Info.plist" |
| 959 output_name = "ui_unittests Framework" | 962 output_name = "ui_unittests Framework" |
| 960 } | 963 } |
| 961 } | 964 } |
| OLD | NEW |