Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: ui/views/BUILD.gn

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed tapted's comments and added a test Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "controls/textfield/textfield_controller.cc", 243 "controls/textfield/textfield_controller.cc",
244 "controls/textfield/textfield_controller.h", 244 "controls/textfield/textfield_controller.h",
245 "controls/textfield/textfield_model.cc", 245 "controls/textfield/textfield_model.cc",
246 "controls/textfield/textfield_model.h", 246 "controls/textfield/textfield_model.h",
247 "controls/throbber.cc", 247 "controls/throbber.cc",
248 "controls/throbber.h", 248 "controls/throbber.h",
249 "controls/tree/tree_view.cc", 249 "controls/tree/tree_view.cc",
250 "controls/tree/tree_view.h", 250 "controls/tree/tree_view.h",
251 "controls/tree/tree_view_controller.cc", 251 "controls/tree/tree_view_controller.cc",
252 "controls/tree/tree_view_controller.h", 252 "controls/tree/tree_view_controller.h",
253 "controls/views_text_services_context_menu.cc",
254 "controls/views_text_services_context_menu.h",
255 "controls/views_text_services_context_menu_mac.mm",
253 "debug_utils.cc", 256 "debug_utils.cc",
254 "debug_utils.h", 257 "debug_utils.h",
255 "drag_controller.h", 258 "drag_controller.h",
256 "drag_utils.cc", 259 "drag_utils.cc",
257 "drag_utils.h", 260 "drag_utils.h",
258 "drag_utils_mac.mm", 261 "drag_utils_mac.mm",
259 "event_monitor.h", 262 "event_monitor.h",
260 "event_monitor_mac.h", 263 "event_monitor_mac.h",
261 "event_monitor_mac.mm", 264 "event_monitor_mac.mm",
262 "focus/external_focus_tracker.cc", 265 "focus/external_focus_tracker.cc",
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", 621 "widget/desktop_aura/desktop_window_tree_host_ozone.cc",
619 ] 622 ]
620 } 623 }
621 if (is_linux) { 624 if (is_linux) {
622 sources += [ "style/platform_style_linux.cc" ] 625 sources += [ "style/platform_style_linux.cc" ]
623 } 626 }
624 } 627 }
625 } 628 }
626 629
627 if (is_mac) { 630 if (is_mac) {
631 sources -= [ "controls/views_text_services_context_menu.cc" ]
628 deps += [ 632 deps += [
629 "//ui/accelerated_widget_mac", 633 "//ui/accelerated_widget_mac",
630 "//ui/events:dom_keycode_converter", 634 "//ui/events:dom_keycode_converter",
631 ] 635 ]
632 libs = [ 636 libs = [
633 "AppKit.framework", 637 "AppKit.framework",
634 "CoreGraphics.framework", 638 "CoreGraphics.framework",
635 "Foundation.framework", 639 "Foundation.framework",
636 "QuartzCore.framework", # Required by bridged_native_widget.mm. 640 "QuartzCore.framework", # Required by bridged_native_widget.mm.
637 ] 641 ]
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 "//ui/base:test_support", 1027 "//ui/base:test_support",
1024 "//ui/compositor", 1028 "//ui/compositor",
1025 "//ui/events:test_support", 1029 "//ui/events:test_support",
1026 "//ui/gl:test_support", 1030 "//ui/gl:test_support",
1027 "//ui/resources", 1031 "//ui/resources",
1028 "//ui/resources:ui_test_pak", 1032 "//ui/resources:ui_test_pak",
1029 "//ui/strings", 1033 "//ui/strings",
1030 ] 1034 ]
1031 } 1035 }
1032 } 1036 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698