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

Side by Side Diff: ui/views/views.gyp

Issue 789763002: MacViews: Implement capture using NSEvent local+global monitors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20140812-MacViews-LAYERS2-PRESQUASH
Patch Set: NULL -> nullptr Created 6 years 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
« no previous file with comments | « ui/views/cocoa/cocoa_mouse_capture_unittest.mm ('k') | ui/views/widget/native_widget_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 # Sources lists shared with GN build. 7 # Sources lists shared with GN build.
8 'views_sources': [ 8 'views_sources': [
9 'accessibility/native_view_accessibility.cc', 9 'accessibility/native_view_accessibility.cc',
10 'accessibility/native_view_accessibility.h', 10 'accessibility/native_view_accessibility.h',
(...skipping 10 matching lines...) Expand all
21 'border.cc', 21 'border.cc',
22 'border.h', 22 'border.h',
23 'bubble/bubble_border.cc', 23 'bubble/bubble_border.cc',
24 'bubble/bubble_border.h', 24 'bubble/bubble_border.h',
25 'bubble/bubble_delegate.cc', 25 'bubble/bubble_delegate.cc',
26 'bubble/bubble_delegate.h', 26 'bubble/bubble_delegate.h',
27 'bubble/bubble_frame_view.cc', 27 'bubble/bubble_frame_view.cc',
28 'bubble/bubble_frame_view.h', 28 'bubble/bubble_frame_view.h',
29 'button_drag_utils.cc', 29 'button_drag_utils.cc',
30 'button_drag_utils.h', 30 'button_drag_utils.h',
31 'cocoa/cocoa_mouse_capture.h',
32 'cocoa/cocoa_mouse_capture.mm',
33 'cocoa/cocoa_mouse_capture_delegate.h',
31 'cocoa/bridged_content_view.h', 34 'cocoa/bridged_content_view.h',
32 'cocoa/bridged_content_view.mm', 35 'cocoa/bridged_content_view.mm',
33 'cocoa/bridged_native_widget.h', 36 'cocoa/bridged_native_widget.h',
34 'cocoa/bridged_native_widget.mm', 37 'cocoa/bridged_native_widget.mm',
35 'cocoa/native_widget_mac_nswindow.h', 38 'cocoa/native_widget_mac_nswindow.h',
36 'cocoa/native_widget_mac_nswindow.mm', 39 'cocoa/native_widget_mac_nswindow.mm',
37 'cocoa/views_nswindow_delegate.h', 40 'cocoa/views_nswindow_delegate.h',
38 'cocoa/views_nswindow_delegate.mm', 41 'cocoa/views_nswindow_delegate.mm',
39 'color_chooser/color_chooser_listener.h', 42 'color_chooser/color_chooser_listener.h',
40 'color_chooser/color_chooser_view.cc', 43 'color_chooser/color_chooser_view.cc',
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 ], 501 ],
499 'views_unittests_sources': [ 502 'views_unittests_sources': [
500 'accessibility/native_view_accessibility_unittest.cc', 503 'accessibility/native_view_accessibility_unittest.cc',
501 'accessibility/native_view_accessibility_win_unittest.cc', 504 'accessibility/native_view_accessibility_win_unittest.cc',
502 'accessible_pane_view_unittest.cc', 505 'accessible_pane_view_unittest.cc',
503 'animation/bounds_animator_unittest.cc', 506 'animation/bounds_animator_unittest.cc',
504 'bubble/bubble_border_unittest.cc', 507 'bubble/bubble_border_unittest.cc',
505 'bubble/bubble_delegate_unittest.cc', 508 'bubble/bubble_delegate_unittest.cc',
506 'bubble/bubble_frame_view_unittest.cc', 509 'bubble/bubble_frame_view_unittest.cc',
507 'bubble/bubble_window_targeter_unittest.cc', 510 'bubble/bubble_window_targeter_unittest.cc',
511 'cocoa/cocoa_mouse_capture_unittest.mm',
508 'cocoa/bridged_native_widget_unittest.mm', 512 'cocoa/bridged_native_widget_unittest.mm',
509 'controls/button/blue_button_unittest.cc', 513 'controls/button/blue_button_unittest.cc',
510 'controls/button/custom_button_unittest.cc', 514 'controls/button/custom_button_unittest.cc',
511 'controls/button/image_button_unittest.cc', 515 'controls/button/image_button_unittest.cc',
512 'controls/button/label_button_unittest.cc', 516 'controls/button/label_button_unittest.cc',
513 'controls/button/menu_button_unittest.cc', 517 'controls/button/menu_button_unittest.cc',
514 'controls/combobox/combobox_unittest.cc', 518 'controls/combobox/combobox_unittest.cc',
515 'controls/label_unittest.cc', 519 'controls/label_unittest.cc',
516 'controls/menu/menu_controller_unittest.cc', 520 'controls/menu/menu_controller_unittest.cc',
517 'controls/menu/menu_item_view_unittest.cc', 521 'controls/menu/menu_item_view_unittest.cc',
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 '../aura/aura.gyp:aura', 899 '../aura/aura.gyp:aura',
896 '../wm/wm.gyp:wm', 900 '../wm/wm.gyp:wm',
897 ], 901 ],
898 }], 902 }],
899 ], 903 ],
900 }, # target_name: macviews_interactive_ui_tests 904 }, # target_name: macviews_interactive_ui_tests
901 ], # targets 905 ], # targets
902 }], 906 }],
903 ], # conditions 907 ], # conditions
904 } 908 }
OLDNEW
« no previous file with comments | « ui/views/cocoa/cocoa_mouse_capture_unittest.mm ('k') | ui/views/widget/native_widget_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698