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