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

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

Issue 246433012: Extend AXTreeSourceViews to handle aura::Window and views::Widget. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'views', 10 'target_name': 'views',
(...skipping 21 matching lines...) Expand all
32 '../wm/wm.gyp:wm', 32 '../wm/wm.gyp:wm',
33 ], 33 ],
34 'export_dependent_settings': [ 34 'export_dependent_settings': [
35 '../accessibility/accessibility.gyp:ax_gen', 35 '../accessibility/accessibility.gyp:ax_gen',
36 ], 36 ],
37 'defines': [ 37 'defines': [
38 'VIEWS_IMPLEMENTATION', 38 'VIEWS_IMPLEMENTATION',
39 ], 39 ],
40 'sources': [ 40 'sources': [
41 # All .cc, .h under views, except unittests 41 # All .cc, .h under views, except unittests
42 'accessibility/ax_node_source_obj_wrapper.h',
43 'accessibility/ax_obj_cache.cc',
44 'accessibility/ax_obj_cache.h',
42 'accessibility/ax_tree_source_views.cc', 45 'accessibility/ax_tree_source_views.cc',
43 'accessibility/ax_tree_source_views.h', 46 'accessibility/ax_tree_source_views.h',
47 'accessibility/ax_view_obj_wrapper.cc',
48 'accessibility/ax_view_obj_wrapper.h',
49 'accessibility/ax_widget_obj_wrapper.cc',
50 'accessibility/ax_widget_obj_wrapper.h',
51 'accessibility/ax_window_obj_wrapper.cc',
52 'accessibility/ax_window_obj_wrapper.h',
44 'accessibility/native_view_accessibility.cc', 53 'accessibility/native_view_accessibility.cc',
45 'accessibility/native_view_accessibility.h', 54 'accessibility/native_view_accessibility.h',
46 'accessibility/native_view_accessibility_win.cc', 55 'accessibility/native_view_accessibility_win.cc',
47 'accessibility/native_view_accessibility_win.h', 56 'accessibility/native_view_accessibility_win.h',
48 'accessible_pane_view.cc', 57 'accessible_pane_view.cc',
49 'accessible_pane_view.h', 58 'accessible_pane_view.h',
50 'animation/bounds_animator.cc', 59 'animation/bounds_animator.cc',
51 'animation/bounds_animator.h', 60 'animation/bounds_animator.h',
52 'animation/scroll_animator.cc', 61 'animation/scroll_animator.cc',
53 'animation/scroll_animator.h', 62 'animation/scroll_animator.h',
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 }], 701 }],
693 ['use_ozone==1', { 702 ['use_ozone==1', {
694 'sources!': [ 703 'sources!': [
695 'corewm/capture_controller_unittest.cc', 704 'corewm/capture_controller_unittest.cc',
696 ], 705 ],
697 }], 706 }],
698 ], 707 ],
699 }, # target_name: views_unittests 708 }, # target_name: views_unittests
700 ], 709 ],
701 } 710 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698