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_util_unittest.cc", | |
913 ] | 912 ] |
914 } | 913 } |
915 | 914 |
916 if (is_chromeos) { | 915 if (is_chromeos) { |
917 deps += [ | 916 deps += [ |
918 "//chromeos", | 917 "//chromeos", |
919 "//ui/events:dom_keycode_converter", | 918 "//ui/events:dom_keycode_converter", |
920 ] | 919 ] |
921 } | 920 } |
922 | 921 |
(...skipping 30 matching lines...) Expand all Loading... |
953 if (is_mac) { | 952 if (is_mac) { |
954 mac_framework_bundle("ui_unittests_framework") { | 953 mac_framework_bundle("ui_unittests_framework") { |
955 testonly = true | 954 testonly = true |
956 deps = [ | 955 deps = [ |
957 "//ui/resources:ui_test_pak_bundle_data", | 956 "//ui/resources:ui_test_pak_bundle_data", |
958 ] | 957 ] |
959 info_plist = "test/framework-Info.plist" | 958 info_plist = "test/framework-Info.plist" |
960 output_name = "ui_unittests Framework" | 959 output_name = "ui_unittests Framework" |
961 } | 960 } |
962 } | 961 } |
OLD | NEW |