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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 "win/internal_constants.cc", | 272 "win/internal_constants.cc", |
273 "win/internal_constants.h", | 273 "win/internal_constants.h", |
274 "win/lock_state.cc", | 274 "win/lock_state.cc", |
275 "win/lock_state.h", | 275 "win/lock_state.h", |
276 "win/message_box_win.cc", | 276 "win/message_box_win.cc", |
277 "win/message_box_win.h", | 277 "win/message_box_win.h", |
278 "win/mouse_wheel_util.cc", | 278 "win/mouse_wheel_util.cc", |
279 "win/mouse_wheel_util.h", | 279 "win/mouse_wheel_util.h", |
280 "win/open_file_name_win.cc", | 280 "win/open_file_name_win.cc", |
281 "win/open_file_name_win.h", | 281 "win/open_file_name_win.h", |
| 282 "win/osk_display_manager.cc", |
| 283 "win/osk_display_manager.h", |
| 284 "win/osk_display_observer.h", |
282 "win/scoped_ole_initializer.cc", | 285 "win/scoped_ole_initializer.cc", |
283 "win/scoped_ole_initializer.h", | 286 "win/scoped_ole_initializer.h", |
284 "win/shell.cc", | 287 "win/shell.cc", |
285 "win/shell.h", | 288 "win/shell.h", |
286 "win/touch_input.cc", | 289 "win/touch_input.cc", |
287 "win/touch_input.h", | 290 "win/touch_input.h", |
288 "win/window_event_target.cc", | 291 "win/window_event_target.cc", |
289 "win/window_event_target.h", | 292 "win/window_event_target.h", |
290 "window_open_disposition.cc", | 293 "window_open_disposition.cc", |
291 "window_open_disposition.h", | 294 "window_open_disposition.h", |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 | 843 |
841 if (is_ios) { | 844 if (is_ios) { |
842 deps += [ "//ui/resources:ui_test_pak_bundle_data" ] | 845 deps += [ "//ui/resources:ui_test_pak_bundle_data" ] |
843 } | 846 } |
844 | 847 |
845 if (is_win) { | 848 if (is_win) { |
846 sources += [ | 849 sources += [ |
847 "dragdrop/os_exchange_data_win_unittest.cc", | 850 "dragdrop/os_exchange_data_win_unittest.cc", |
848 "win/hwnd_subclass_unittest.cc", | 851 "win/hwnd_subclass_unittest.cc", |
849 "win/open_file_name_win_unittest.cc", | 852 "win/open_file_name_win_unittest.cc", |
| 853 "win/osk_display_manager_unittest.cc", |
850 ] | 854 ] |
851 | 855 |
852 ldflags = [ | 856 ldflags = [ |
853 "/DELAYLOAD:d2d1.dll", | 857 "/DELAYLOAD:d2d1.dll", |
854 "/DELAYLOAD:d3d10_1.dll", | 858 "/DELAYLOAD:d3d10_1.dll", |
855 ] | 859 ] |
856 libs = [ | 860 libs = [ |
857 "d2d1.lib", | 861 "d2d1.lib", |
858 "d3d10_1.lib", | 862 "d3d10_1.lib", |
859 "imm32.lib", | 863 "imm32.lib", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
952 if (is_mac) { | 956 if (is_mac) { |
953 mac_framework_bundle("ui_unittests_framework") { | 957 mac_framework_bundle("ui_unittests_framework") { |
954 testonly = true | 958 testonly = true |
955 deps = [ | 959 deps = [ |
956 "//ui/resources:ui_test_pak_bundle_data", | 960 "//ui/resources:ui_test_pak_bundle_data", |
957 ] | 961 ] |
958 info_plist = "test/framework-Info.plist" | 962 info_plist = "test/framework-Info.plist" |
959 output_name = "ui_unittests Framework" | 963 output_name = "ui_unittests Framework" |
960 } | 964 } |
961 } | 965 } |
OLD | NEW |