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

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: Fix for tapted 3 Created 3 years, 12 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", 620 "widget/desktop_aura/desktop_window_tree_host_ozone.cc",
618 ] 621 ]
619 } 622 }
620 if (is_linux) { 623 if (is_linux) {
621 sources += [ "style/platform_style_linux.cc" ] 624 sources += [ "style/platform_style_linux.cc" ]
622 } 625 }
623 } 626 }
624 } 627 }
625 628
626 if (is_mac) { 629 if (is_mac) {
630 sources -= [ "controls/views_text_services_context_menu.cc" ]
627 deps += [ 631 deps += [
628 "//ui/accelerated_widget_mac", 632 "//ui/accelerated_widget_mac",
629 "//ui/events:dom_keycode_converter", 633 "//ui/events:dom_keycode_converter",
630 ] 634 ]
631 libs = [ 635 libs = [
632 "AppKit.framework", 636 "AppKit.framework",
633 "CoreGraphics.framework", 637 "CoreGraphics.framework",
634 "Foundation.framework", 638 "Foundation.framework",
635 "QuartzCore.framework", # Required by bridged_native_widget.mm. 639 "QuartzCore.framework", # Required by bridged_native_widget.mm.
636 ] 640 ]
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 "//ui/base:test_support", 1023 "//ui/base:test_support",
1020 "//ui/compositor", 1024 "//ui/compositor",
1021 "//ui/events:test_support", 1025 "//ui/events:test_support",
1022 "//ui/gl:test_support", 1026 "//ui/gl:test_support",
1023 "//ui/resources", 1027 "//ui/resources",
1024 "//ui/resources:ui_test_pak", 1028 "//ui/resources:ui_test_pak",
1025 "//ui/strings", 1029 "//ui/strings",
1026 ] 1030 ]
1027 } 1031 }
1028 } 1032 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698