| 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 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 "//ui/strings", | 867 "//ui/strings", |
| 868 "//url", | 868 "//url", |
| 869 ] | 869 ] |
| 870 | 870 |
| 871 if (build_ime) { | 871 if (build_ime) { |
| 872 deps += [ "//ui/base/ime" ] | 872 deps += [ "//ui/base/ime" ] |
| 873 } | 873 } |
| 874 | 874 |
| 875 if (is_ios) { | 875 if (is_ios) { |
| 876 deps += [ "//ui/resources:ui_test_pak_bundle_data" ] | 876 deps += [ "//ui/resources:ui_test_pak_bundle_data" ] |
| 877 } else { |
| 878 deps += [ "//ui/base/accelerators/mojo:unittests" ] |
| 877 } | 879 } |
| 878 | 880 |
| 879 if (is_win) { | 881 if (is_win) { |
| 880 sources += [ | 882 sources += [ |
| 881 "dragdrop/os_exchange_data_win_unittest.cc", | 883 "dragdrop/os_exchange_data_win_unittest.cc", |
| 882 "win/hwnd_subclass_unittest.cc", | 884 "win/hwnd_subclass_unittest.cc", |
| 883 "win/open_file_name_win_unittest.cc", | 885 "win/open_file_name_win_unittest.cc", |
| 884 "win/osk_display_manager_unittest.cc", | 886 "win/osk_display_manager_unittest.cc", |
| 885 ] | 887 ] |
| 886 | 888 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 if (is_mac) { | 987 if (is_mac) { |
| 986 mac_framework_bundle("ui_unittests_framework") { | 988 mac_framework_bundle("ui_unittests_framework") { |
| 987 testonly = true | 989 testonly = true |
| 988 deps = [ | 990 deps = [ |
| 989 "//ui/resources:ui_test_pak_bundle_data", | 991 "//ui/resources:ui_test_pak_bundle_data", |
| 990 ] | 992 ] |
| 991 info_plist = "test/framework-Info.plist" | 993 info_plist = "test/framework-Info.plist" |
| 992 output_name = "ui_unittests Framework" | 994 output_name = "ui_unittests Framework" |
| 993 } | 995 } |
| 994 } | 996 } |
| OLD | NEW |