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

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

Issue 420653003: MacViews: Accessibility bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double delete. Add NativeViewAccessibilityTest. Created 6 years, 4 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 | Annotate | Revision Log
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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 'test/widget_test_aura.cc', 477 'test/widget_test_aura.cc',
478 'test/widget_test_mac.mm', 478 'test/widget_test_mac.mm',
479 'test/x11_property_change_waiter.cc', 479 'test/x11_property_change_waiter.cc',
480 'test/x11_property_change_waiter.h', 480 'test/x11_property_change_waiter.h',
481 ], 481 ],
482 'views_test_support_aura_sources': [ 482 'views_test_support_aura_sources': [
483 'corewm/tooltip_controller_test_helper.cc', 483 'corewm/tooltip_controller_test_helper.cc',
484 'corewm/tooltip_controller_test_helper.h', 484 'corewm/tooltip_controller_test_helper.h',
485 ], 485 ],
486 'views_unittests_sources': [ 486 'views_unittests_sources': [
487 'accessibility/native_view_accessibility_unittest.cc',
487 'accessibility/native_view_accessibility_win_unittest.cc', 488 'accessibility/native_view_accessibility_win_unittest.cc',
488 'accessible_pane_view_unittest.cc', 489 'accessible_pane_view_unittest.cc',
489 'animation/bounds_animator_unittest.cc', 490 'animation/bounds_animator_unittest.cc',
490 'bubble/bubble_border_unittest.cc', 491 'bubble/bubble_border_unittest.cc',
491 'bubble/bubble_delegate_unittest.cc', 492 'bubble/bubble_delegate_unittest.cc',
492 'bubble/bubble_frame_view_unittest.cc', 493 'bubble/bubble_frame_view_unittest.cc',
493 'bubble/bubble_window_targeter_unittest.cc', 494 'bubble/bubble_window_targeter_unittest.cc',
494 'cocoa/bridged_native_widget_unittest.mm', 495 'cocoa/bridged_native_widget_unittest.mm',
495 'controls/button/blue_button_unittest.cc', 496 'controls/button/blue_button_unittest.cc',
496 'controls/button/custom_button_unittest.cc', 497 'controls/button/custom_button_unittest.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 'type': '<(component)', 565 'type': '<(component)',
565 'dependencies': [ 566 'dependencies': [
566 '../../base/base.gyp:base', 567 '../../base/base.gyp:base',
567 '../../base/base.gyp:base_i18n', 568 '../../base/base.gyp:base_i18n',
568 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 569 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
569 '../../skia/skia.gyp:skia', 570 '../../skia/skia.gyp:skia',
570 '../../third_party/icu/icu.gyp:icui18n', 571 '../../third_party/icu/icu.gyp:icui18n',
571 '../../third_party/icu/icu.gyp:icuuc', 572 '../../third_party/icu/icu.gyp:icuuc',
572 '../../url/url.gyp:url_lib', 573 '../../url/url.gyp:url_lib',
573 '../accessibility/accessibility.gyp:accessibility', 574 '../accessibility/accessibility.gyp:accessibility',
575 '../accessibility/accessibility.gyp:accessibility_platform',
574 '../accessibility/accessibility.gyp:ax_gen', 576 '../accessibility/accessibility.gyp:ax_gen',
575 '../base/ui_base.gyp:ui_base', 577 '../base/ui_base.gyp:ui_base',
576 '../compositor/compositor.gyp:compositor', 578 '../compositor/compositor.gyp:compositor',
577 '../events/events.gyp:events', 579 '../events/events.gyp:events',
578 '../events/events.gyp:events_base', 580 '../events/events.gyp:events_base',
579 '../events/platform/events_platform.gyp:events_platform', 581 '../events/platform/events_platform.gyp:events_platform',
580 '../gfx/gfx.gyp:gfx', 582 '../gfx/gfx.gyp:gfx',
581 '../gfx/gfx.gyp:gfx_geometry', 583 '../gfx/gfx.gyp:gfx_geometry',
582 '../native_theme/native_theme.gyp:native_theme', 584 '../native_theme/native_theme.gyp:native_theme',
583 '../resources/ui_resources.gyp:ui_resources', 585 '../resources/ui_resources.gyp:ui_resources',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 'sources/': [ 620 'sources/': [
619 ['exclude', 'linux_ui'], 621 ['exclude', 'linux_ui'],
620 ], 622 ],
621 }], 623 }],
622 ['OS=="win"', { 624 ['OS=="win"', {
623 'sources': [ 625 'sources': [
624 '<@(views_win_sources)', 626 '<@(views_win_sources)',
625 ], 627 ],
626 'dependencies': [ 628 'dependencies': [
627 # For accessibility 629 # For accessibility
628 '../accessibility/accessibility.gyp:accessibility_platform',
629 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 630 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
630 ], 631 ],
631 'include_dirs': [ 632 'include_dirs': [
632 '../../third_party/wtl/include', 633 '../../third_party/wtl/include',
633 ], 634 ],
634 'link_settings': { 635 'link_settings': {
635 'libraries': [ 636 'libraries': [
636 '-limm32.lib', 637 '-limm32.lib',
637 '-loleacc.lib', 638 '-loleacc.lib',
638 ], 639 ],
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 '../aura/aura.gyp:aura', 873 '../aura/aura.gyp:aura',
873 '../wm/wm.gyp:wm', 874 '../wm/wm.gyp:wm',
874 ], 875 ],
875 }], 876 }],
876 ], 877 ],
877 }, # target_name: macviews_interactive_ui_tests 878 }, # target_name: macviews_interactive_ui_tests
878 ], # targets 879 ], # targets
879 }], 880 }],
880 ], # conditions 881 ], # conditions
881 } 882 }
OLDNEW
« ui/views/cocoa/bridged_content_view.mm ('K') | « ui/views/cocoa/bridged_content_view.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698