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

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

Issue 1922813002: Vanquish views::BubbleDelegate{View,} (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix other test, respond to comments Created 4 years, 7 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
« no previous file with comments | « ui/views/bubble/bubble_delegate_unittest.cc ('k') | ui/views/widget/widget_delegate.h » ('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 30 matching lines...) Expand all
41 'animation/flood_fill_ink_drop_animation.cc', 41 'animation/flood_fill_ink_drop_animation.cc',
42 'animation/flood_fill_ink_drop_animation.h', 42 'animation/flood_fill_ink_drop_animation.h',
43 'animation/square_ink_drop_animation.cc', 43 'animation/square_ink_drop_animation.cc',
44 'animation/square_ink_drop_animation.h', 44 'animation/square_ink_drop_animation.h',
45 'background.cc', 45 'background.cc',
46 'background.h', 46 'background.h',
47 'border.cc', 47 'border.cc',
48 'border.h', 48 'border.h',
49 'bubble/bubble_border.cc', 49 'bubble/bubble_border.cc',
50 'bubble/bubble_border.h', 50 'bubble/bubble_border.h',
51 'bubble/bubble_delegate.cc',
52 'bubble/bubble_delegate.h',
53 'bubble/bubble_dialog_delegate.cc', 51 'bubble/bubble_dialog_delegate.cc',
54 'bubble/bubble_dialog_delegate.h', 52 'bubble/bubble_dialog_delegate.h',
55 'bubble/bubble_frame_view.cc', 53 'bubble/bubble_frame_view.cc',
56 'bubble/bubble_frame_view.h', 54 'bubble/bubble_frame_view.h',
57 'button_drag_utils.cc', 55 'button_drag_utils.cc',
58 'button_drag_utils.h', 56 'button_drag_utils.h',
59 'cocoa/bridged_content_view.h', 57 'cocoa/bridged_content_view.h',
60 'cocoa/bridged_content_view.mm', 58 'cocoa/bridged_content_view.mm',
61 'cocoa/bridged_native_widget.h', 59 'cocoa/bridged_native_widget.h',
62 'cocoa/bridged_native_widget.mm', 60 'cocoa/bridged_native_widget.mm',
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'accessibility/native_view_accessibility_unittest.cc', 559 'accessibility/native_view_accessibility_unittest.cc',
562 'accessibility/native_view_accessibility_win_unittest.cc', 560 'accessibility/native_view_accessibility_win_unittest.cc',
563 'accessible_pane_view_unittest.cc', 561 'accessible_pane_view_unittest.cc',
564 'animation/bounds_animator_unittest.cc', 562 'animation/bounds_animator_unittest.cc',
565 'animation/ink_drop_animation_controller_factory_unittest.cc', 563 'animation/ink_drop_animation_controller_factory_unittest.cc',
566 'animation/ink_drop_animation_controller_impl_unittest.cc', 564 'animation/ink_drop_animation_controller_impl_unittest.cc',
567 'animation/ink_drop_animation_unittest.cc', 565 'animation/ink_drop_animation_unittest.cc',
568 'animation/ink_drop_hover_unittest.cc', 566 'animation/ink_drop_hover_unittest.cc',
569 'animation/square_ink_drop_animation_unittest.cc', 567 'animation/square_ink_drop_animation_unittest.cc',
570 'bubble/bubble_border_unittest.cc', 568 'bubble/bubble_border_unittest.cc',
571 'bubble/bubble_delegate_unittest.cc',
572 'bubble/bubble_dialog_delegate_unittest.cc', 569 'bubble/bubble_dialog_delegate_unittest.cc',
573 'bubble/bubble_frame_view_unittest.cc', 570 'bubble/bubble_frame_view_unittest.cc',
574 'bubble/bubble_window_targeter_unittest.cc', 571 'bubble/bubble_window_targeter_unittest.cc',
575 'cocoa/bridged_native_widget_unittest.mm', 572 'cocoa/bridged_native_widget_unittest.mm',
576 'cocoa/cocoa_mouse_capture_unittest.mm', 573 'cocoa/cocoa_mouse_capture_unittest.mm',
577 'controls/button/blue_button_unittest.cc', 574 'controls/button/blue_button_unittest.cc',
578 'controls/button/custom_button_unittest.cc', 575 'controls/button/custom_button_unittest.cc',
579 'controls/button/image_button_unittest.cc', 576 'controls/button/image_button_unittest.cc',
580 'controls/button/label_button_unittest.cc', 577 'controls/button/label_button_unittest.cc',
581 'controls/button/menu_button_unittest.cc', 578 'controls/button/menu_button_unittest.cc',
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 '../aura/aura.gyp:aura', 1024 '../aura/aura.gyp:aura',
1028 '../wm/wm.gyp:wm', 1025 '../wm/wm.gyp:wm',
1029 ], 1026 ],
1030 }], 1027 }],
1031 ], 1028 ],
1032 }, # target_name: macviews_interactive_ui_tests 1029 }, # target_name: macviews_interactive_ui_tests
1033 ], # targets 1030 ], # targets
1034 }], 1031 }],
1035 ], # conditions 1032 ], # conditions
1036 } 1033 }
OLDNEW
« no previous file with comments | « ui/views/bubble/bubble_delegate_unittest.cc ('k') | ui/views/widget/widget_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698