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/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
10 | 10 |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 "controls/textfield/textfield_controller.cc", | 290 "controls/textfield/textfield_controller.cc", |
291 "controls/textfield/textfield_controller.h", | 291 "controls/textfield/textfield_controller.h", |
292 "controls/textfield/textfield_model.cc", | 292 "controls/textfield/textfield_model.cc", |
293 "controls/textfield/textfield_model.h", | 293 "controls/textfield/textfield_model.h", |
294 "controls/throbber.cc", | 294 "controls/throbber.cc", |
295 "controls/throbber.h", | 295 "controls/throbber.h", |
296 "controls/tree/tree_view.cc", | 296 "controls/tree/tree_view.cc", |
297 "controls/tree/tree_view.h", | 297 "controls/tree/tree_view.h", |
298 "controls/tree/tree_view_controller.cc", | 298 "controls/tree/tree_view_controller.cc", |
299 "controls/tree/tree_view_controller.h", | 299 "controls/tree/tree_view_controller.h", |
| 300 "controls/views_text_services_context_menu.cc", |
| 301 "controls/views_text_services_context_menu.h", |
| 302 "controls/views_text_services_context_menu_mac.mm", |
300 "debug_utils.cc", | 303 "debug_utils.cc", |
301 "debug_utils.h", | 304 "debug_utils.h", |
302 "drag_controller.h", | 305 "drag_controller.h", |
303 "drag_utils.cc", | 306 "drag_utils.cc", |
304 "drag_utils.h", | 307 "drag_utils.h", |
305 "drag_utils_mac.mm", | 308 "drag_utils_mac.mm", |
306 "event_monitor.h", | 309 "event_monitor.h", |
307 "event_monitor_mac.h", | 310 "event_monitor_mac.h", |
308 "event_monitor_mac.mm", | 311 "event_monitor_mac.mm", |
309 "focus/external_focus_tracker.cc", | 312 "focus/external_focus_tracker.cc", |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", | 671 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", |
669 ] | 672 ] |
670 } | 673 } |
671 if (is_linux) { | 674 if (is_linux) { |
672 sources += [ "style/platform_style_linux.cc" ] | 675 sources += [ "style/platform_style_linux.cc" ] |
673 } | 676 } |
674 } | 677 } |
675 } | 678 } |
676 | 679 |
677 if (is_mac) { | 680 if (is_mac) { |
| 681 sources -= [ "controls/views_text_services_context_menu.cc" ] |
678 deps += [ | 682 deps += [ |
679 "//ui/accelerated_widget_mac", | 683 "//ui/accelerated_widget_mac", |
680 "//ui/events:dom_keycode_converter", | 684 "//ui/events:dom_keycode_converter", |
681 ] | 685 ] |
682 libs = [ | 686 libs = [ |
683 "AppKit.framework", | 687 "AppKit.framework", |
684 "CoreGraphics.framework", | 688 "CoreGraphics.framework", |
685 "Foundation.framework", | 689 "Foundation.framework", |
686 "QuartzCore.framework", # Required by bridged_native_widget.mm. | 690 "QuartzCore.framework", # Required by bridged_native_widget.mm. |
687 ] | 691 ] |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1075 "//ui/base:test_support", | 1079 "//ui/base:test_support", |
1076 "//ui/compositor", | 1080 "//ui/compositor", |
1077 "//ui/events:test_support", | 1081 "//ui/events:test_support", |
1078 "//ui/gl:test_support", | 1082 "//ui/gl:test_support", |
1079 "//ui/resources", | 1083 "//ui/resources", |
1080 "//ui/resources:ui_test_pak", | 1084 "//ui/resources:ui_test_pak", |
1081 "//ui/strings", | 1085 "//ui/strings", |
1082 ] | 1086 ] |
1083 } | 1087 } |
1084 } | 1088 } |
OLD | NEW |