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

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

Issue 1517463003: Added comprehensive tests for views::Border. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« ui/views/border_unittest.cc ('K') | « ui/views/border_unittest.cc ('k') | no next file » | 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 'test/ui_controls_factory_desktop_aurax11.cc', 537 'test/ui_controls_factory_desktop_aurax11.cc',
538 'test/ui_controls_factory_desktop_aurax11.h', 538 'test/ui_controls_factory_desktop_aurax11.h',
539 ], 539 ],
540 'views_unittests_sources': [ 540 'views_unittests_sources': [
541 'accessibility/native_view_accessibility_unittest.cc', 541 'accessibility/native_view_accessibility_unittest.cc',
542 'accessibility/native_view_accessibility_win_unittest.cc', 542 'accessibility/native_view_accessibility_win_unittest.cc',
543 'accessible_pane_view_unittest.cc', 543 'accessible_pane_view_unittest.cc',
544 'animation/bounds_animator_unittest.cc', 544 'animation/bounds_animator_unittest.cc',
545 'animation/ink_drop_animation_controller_factory_unittest.cc', 545 'animation/ink_drop_animation_controller_factory_unittest.cc',
546 'animation/ink_drop_animation_unittest.cc', 546 'animation/ink_drop_animation_unittest.cc',
547 'border_unittest.cc',
547 'bubble/bubble_border_unittest.cc', 548 'bubble/bubble_border_unittest.cc',
548 'bubble/bubble_delegate_unittest.cc', 549 'bubble/bubble_delegate_unittest.cc',
549 'bubble/bubble_frame_view_unittest.cc', 550 'bubble/bubble_frame_view_unittest.cc',
550 'bubble/bubble_window_targeter_unittest.cc', 551 'bubble/bubble_window_targeter_unittest.cc',
551 'cocoa/bridged_native_widget_unittest.mm', 552 'cocoa/bridged_native_widget_unittest.mm',
552 'cocoa/cocoa_mouse_capture_unittest.mm', 553 'cocoa/cocoa_mouse_capture_unittest.mm',
553 'controls/button/blue_button_unittest.cc', 554 'controls/button/blue_button_unittest.cc',
554 'controls/button/custom_button_unittest.cc', 555 'controls/button/custom_button_unittest.cc',
555 'controls/button/image_button_unittest.cc', 556 'controls/button/image_button_unittest.cc',
556 'controls/button/label_button_unittest.cc', 557 'controls/button/label_button_unittest.cc',
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 ], 782 ],
782 }, # target_name: views 783 }, # target_name: views
783 { 784 {
784 # GN version: //ui/views:test_support 785 # GN version: //ui/views:test_support
785 'target_name': 'views_test_support', 786 'target_name': 'views_test_support',
786 'type': 'static_library', 787 'type': 'static_library',
787 'dependencies': [ 788 'dependencies': [
788 '../../base/base.gyp:base', 789 '../../base/base.gyp:base',
789 '../../ipc/ipc.gyp:test_support_ipc', 790 '../../ipc/ipc.gyp:test_support_ipc',
790 '../../skia/skia.gyp:skia', 791 '../../skia/skia.gyp:skia',
792 '../../testing/gmock.gyp:gmock',
791 '../../testing/gtest.gyp:gtest', 793 '../../testing/gtest.gyp:gtest',
792 '../base/ime/ui_base_ime.gyp:ui_base_ime', 794 '../base/ime/ui_base_ime.gyp:ui_base_ime',
793 '../base/ui_base.gyp:ui_base', 795 '../base/ui_base.gyp:ui_base',
794 '../compositor/compositor.gyp:compositor', 796 '../compositor/compositor.gyp:compositor',
795 '../compositor/compositor.gyp:compositor_test_support', 797 '../compositor/compositor.gyp:compositor_test_support',
796 '../events/events.gyp:events', 798 '../events/events.gyp:events',
797 '../events/events.gyp:events_test_support', 799 '../events/events.gyp:events_test_support',
798 '../events/platform/events_platform.gyp:events_platform', 800 '../events/platform/events_platform.gyp:events_platform',
799 '../gfx/gfx.gyp:gfx', 801 '../gfx/gfx.gyp:gfx',
800 '../gfx/gfx.gyp:gfx_geometry', 802 '../gfx/gfx.gyp:gfx_geometry',
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 '../aura/aura.gyp:aura', 971 '../aura/aura.gyp:aura',
970 '../wm/wm.gyp:wm', 972 '../wm/wm.gyp:wm',
971 ], 973 ],
972 }], 974 }],
973 ], 975 ],
974 }, # target_name: macviews_interactive_ui_tests 976 }, # target_name: macviews_interactive_ui_tests
975 ], # targets 977 ], # targets
976 }], 978 }],
977 ], # conditions 979 ], # conditions
978 } 980 }
OLDNEW
« ui/views/border_unittest.cc ('K') | « ui/views/border_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698