| 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 import("//ui/vector_icons/vector_icons.gni") | 10 import("//ui/vector_icons/vector_icons.gni") |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 "controls/textfield/textfield_controller.cc", | 267 "controls/textfield/textfield_controller.cc", |
| 268 "controls/textfield/textfield_controller.h", | 268 "controls/textfield/textfield_controller.h", |
| 269 "controls/textfield/textfield_model.cc", | 269 "controls/textfield/textfield_model.cc", |
| 270 "controls/textfield/textfield_model.h", | 270 "controls/textfield/textfield_model.h", |
| 271 "controls/throbber.cc", | 271 "controls/throbber.cc", |
| 272 "controls/throbber.h", | 272 "controls/throbber.h", |
| 273 "controls/tree/tree_view.cc", | 273 "controls/tree/tree_view.cc", |
| 274 "controls/tree/tree_view.h", | 274 "controls/tree/tree_view.h", |
| 275 "controls/tree/tree_view_controller.cc", | 275 "controls/tree/tree_view_controller.cc", |
| 276 "controls/tree/tree_view_controller.h", | 276 "controls/tree/tree_view_controller.h", |
| 277 "controls/views_text_services_context_menu.cc", | |
| 278 "controls/views_text_services_context_menu.h", | |
| 279 "controls/views_text_services_context_menu_mac.mm", | |
| 280 "debug_utils.cc", | 277 "debug_utils.cc", |
| 281 "debug_utils.h", | 278 "debug_utils.h", |
| 282 "drag_controller.h", | 279 "drag_controller.h", |
| 283 "drag_utils.cc", | 280 "drag_utils.cc", |
| 284 "drag_utils.h", | 281 "drag_utils.h", |
| 285 "drag_utils_mac.mm", | 282 "drag_utils_mac.mm", |
| 286 "event_monitor.h", | 283 "event_monitor.h", |
| 287 "event_monitor_mac.h", | 284 "event_monitor_mac.h", |
| 288 "event_monitor_mac.mm", | 285 "event_monitor_mac.mm", |
| 289 "focus/external_focus_tracker.cc", | 286 "focus/external_focus_tracker.cc", |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", | 646 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", |
| 650 ] | 647 ] |
| 651 } | 648 } |
| 652 if (is_linux) { | 649 if (is_linux) { |
| 653 sources += [ "style/platform_style_linux.cc" ] | 650 sources += [ "style/platform_style_linux.cc" ] |
| 654 } | 651 } |
| 655 } | 652 } |
| 656 } | 653 } |
| 657 | 654 |
| 658 if (is_mac) { | 655 if (is_mac) { |
| 659 sources -= [ "controls/views_text_services_context_menu.cc" ] | |
| 660 deps += [ | 656 deps += [ |
| 661 "//ui/accelerated_widget_mac", | 657 "//ui/accelerated_widget_mac", |
| 662 "//ui/events:dom_keycode_converter", | 658 "//ui/events:dom_keycode_converter", |
| 663 ] | 659 ] |
| 664 libs = [ | 660 libs = [ |
| 665 "AppKit.framework", | 661 "AppKit.framework", |
| 666 "CoreGraphics.framework", | 662 "CoreGraphics.framework", |
| 667 "Foundation.framework", | 663 "Foundation.framework", |
| 668 "QuartzCore.framework", # Required by bridged_native_widget.mm. | 664 "QuartzCore.framework", # Required by bridged_native_widget.mm. |
| 669 ] | 665 ] |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 "//ui/base:test_support", | 1053 "//ui/base:test_support", |
| 1058 "//ui/compositor", | 1054 "//ui/compositor", |
| 1059 "//ui/events:test_support", | 1055 "//ui/events:test_support", |
| 1060 "//ui/gl:test_support", | 1056 "//ui/gl:test_support", |
| 1061 "//ui/resources", | 1057 "//ui/resources", |
| 1062 "//ui/resources:ui_test_pak", | 1058 "//ui/resources:ui_test_pak", |
| 1063 "//ui/strings", | 1059 "//ui/strings", |
| 1064 ] | 1060 ] |
| 1065 } | 1061 } |
| 1066 } | 1062 } |
| OLD | NEW |