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