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

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 msw's comments, changed 2016 to 2017 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", 670 "widget/desktop_aura/desktop_window_tree_host_ozone.cc",
668 ] 671 ]
669 } 672 }
670 if (is_linux) { 673 if (is_linux) {
671 sources += [ "style/platform_style_linux.cc" ] 674 sources += [ "style/platform_style_linux.cc" ]
672 } 675 }
673 } 676 }
674 } 677 }
675 678
676 if (is_mac) { 679 if (is_mac) {
680 sources -= [ "controls/views_text_services_context_menu.cc" ]
677 deps += [ 681 deps += [
678 "//ui/accelerated_widget_mac", 682 "//ui/accelerated_widget_mac",
679 "//ui/events:dom_keycode_converter", 683 "//ui/events:dom_keycode_converter",
680 ] 684 ]
681 libs = [ 685 libs = [
682 "AppKit.framework", 686 "AppKit.framework",
683 "CoreGraphics.framework", 687 "CoreGraphics.framework",
684 "Foundation.framework", 688 "Foundation.framework",
685 "QuartzCore.framework", # Required by bridged_native_widget.mm. 689 "QuartzCore.framework", # Required by bridged_native_widget.mm.
686 ] 690 ]
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1072 "//ui/base:test_support", 1076 "//ui/base:test_support",
1073 "//ui/compositor", 1077 "//ui/compositor",
1074 "//ui/events:test_support", 1078 "//ui/events:test_support",
1075 "//ui/gl:test_support", 1079 "//ui/gl:test_support",
1076 "//ui/resources", 1080 "//ui/resources",
1077 "//ui/resources:ui_test_pak", 1081 "//ui/resources:ui_test_pak",
1078 "//ui/strings", 1082 "//ui/strings",
1079 ] 1083 ]
1080 } 1084 }
1081 } 1085 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698