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

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: 2nd draft, based on 423513005 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 'type': '<(component)', 564 'type': '<(component)',
565 'dependencies': [ 565 'dependencies': [
566 '../../base/base.gyp:base', 566 '../../base/base.gyp:base',
567 '../../base/base.gyp:base_i18n', 567 '../../base/base.gyp:base_i18n',
568 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 568 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
569 '../../skia/skia.gyp:skia', 569 '../../skia/skia.gyp:skia',
570 '../../third_party/icu/icu.gyp:icui18n', 570 '../../third_party/icu/icu.gyp:icui18n',
571 '../../third_party/icu/icu.gyp:icuuc', 571 '../../third_party/icu/icu.gyp:icuuc',
572 '../../url/url.gyp:url_lib', 572 '../../url/url.gyp:url_lib',
573 '../accessibility/accessibility.gyp:accessibility', 573 '../accessibility/accessibility.gyp:accessibility',
574 '../accessibility/accessibility.gyp:accessibility_platform',
574 '../accessibility/accessibility.gyp:ax_gen', 575 '../accessibility/accessibility.gyp:ax_gen',
575 '../base/ui_base.gyp:ui_base', 576 '../base/ui_base.gyp:ui_base',
576 '../compositor/compositor.gyp:compositor', 577 '../compositor/compositor.gyp:compositor',
577 '../events/events.gyp:events', 578 '../events/events.gyp:events',
578 '../events/events.gyp:events_base', 579 '../events/events.gyp:events_base',
579 '../events/platform/events_platform.gyp:events_platform', 580 '../events/platform/events_platform.gyp:events_platform',
580 '../gfx/gfx.gyp:gfx', 581 '../gfx/gfx.gyp:gfx',
581 '../gfx/gfx.gyp:gfx_geometry', 582 '../gfx/gfx.gyp:gfx_geometry',
582 '../native_theme/native_theme.gyp:native_theme', 583 '../native_theme/native_theme.gyp:native_theme',
583 '../resources/ui_resources.gyp:ui_resources', 584 '../resources/ui_resources.gyp:ui_resources',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 'sources/': [ 619 'sources/': [
619 ['exclude', 'linux_ui'], 620 ['exclude', 'linux_ui'],
620 ], 621 ],
621 }], 622 }],
622 ['OS=="win"', { 623 ['OS=="win"', {
623 'sources': [ 624 'sources': [
624 '<@(views_win_sources)', 625 '<@(views_win_sources)',
625 ], 626 ],
626 'dependencies': [ 627 'dependencies': [
627 # For accessibility 628 # For accessibility
628 '../accessibility/accessibility.gyp:accessibility_platform',
629 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 629 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
630 ], 630 ],
631 'include_dirs': [ 631 'include_dirs': [
632 '../../third_party/wtl/include', 632 '../../third_party/wtl/include',
633 ], 633 ],
634 'link_settings': { 634 'link_settings': {
635 'libraries': [ 635 'libraries': [
636 '-limm32.lib', 636 '-limm32.lib',
637 '-loleacc.lib', 637 '-loleacc.lib',
638 ], 638 ],
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 '../aura/aura.gyp:aura', 872 '../aura/aura.gyp:aura',
873 '../wm/wm.gyp:wm', 873 '../wm/wm.gyp:wm',
874 ], 874 ],
875 }], 875 }],
876 ], 876 ],
877 }, # target_name: macviews_interactive_ui_tests 877 }, # target_name: macviews_interactive_ui_tests
878 ], # targets 878 ], # targets
879 }], 879 }],
880 ], # conditions 880 ], # conditions
881 } 881 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698