OLD | NEW |
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 Loading... |
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_tree_source_views.cc', | 42 'accessibility/ax_aura_obj_cache.cc', |
43 'accessibility/ax_tree_source_views.h', | 43 'accessibility/ax_aura_obj_cache.h', |
| 44 'accessibility/ax_aura_obj_wrapper.h', |
| 45 'accessibility/ax_view_obj_wrapper.cc', |
| 46 'accessibility/ax_view_obj_wrapper.h', |
| 47 'accessibility/ax_widget_obj_wrapper.cc', |
| 48 'accessibility/ax_widget_obj_wrapper.h', |
| 49 'accessibility/ax_window_obj_wrapper.cc', |
| 50 'accessibility/ax_window_obj_wrapper.h', |
44 'accessibility/native_view_accessibility.cc', | 51 'accessibility/native_view_accessibility.cc', |
45 'accessibility/native_view_accessibility.h', | 52 'accessibility/native_view_accessibility.h', |
46 'accessibility/native_view_accessibility_win.cc', | 53 'accessibility/native_view_accessibility_win.cc', |
47 'accessibility/native_view_accessibility_win.h', | 54 'accessibility/native_view_accessibility_win.h', |
48 'accessible_pane_view.cc', | 55 'accessible_pane_view.cc', |
49 'accessible_pane_view.h', | 56 'accessible_pane_view.h', |
50 'animation/bounds_animator.cc', | 57 'animation/bounds_animator.cc', |
51 'animation/bounds_animator.h', | 58 'animation/bounds_animator.h', |
52 'animation/scroll_animator.cc', | 59 'animation/scroll_animator.cc', |
53 'animation/scroll_animator.h', | 60 'animation/scroll_animator.h', |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 '../resources/ui_resources.gyp:ui_test_pak', | 588 '../resources/ui_resources.gyp:ui_test_pak', |
582 '../ui_unittests.gyp:ui_test_support', | 589 '../ui_unittests.gyp:ui_test_support', |
583 '../wm/wm.gyp:wm', | 590 '../wm/wm.gyp:wm', |
584 'views', | 591 'views', |
585 'views_test_support', | 592 'views_test_support', |
586 ], | 593 ], |
587 'include_dirs': [ | 594 'include_dirs': [ |
588 '..', | 595 '..', |
589 ], | 596 ], |
590 'sources': [ | 597 'sources': [ |
591 'accessibility/ax_tree_source_views_unittest.cc', | |
592 'accessibility/native_view_accessibility_win_unittest.cc', | 598 'accessibility/native_view_accessibility_win_unittest.cc', |
593 'accessible_pane_view_unittest.cc', | 599 'accessible_pane_view_unittest.cc', |
594 'animation/bounds_animator_unittest.cc', | 600 'animation/bounds_animator_unittest.cc', |
595 'bubble/bubble_border_unittest.cc', | 601 'bubble/bubble_border_unittest.cc', |
596 'bubble/bubble_delegate_unittest.cc', | 602 'bubble/bubble_delegate_unittest.cc', |
597 'bubble/bubble_frame_view_unittest.cc', | 603 'bubble/bubble_frame_view_unittest.cc', |
598 'bubble/bubble_window_targeter_unittest.cc', | 604 'bubble/bubble_window_targeter_unittest.cc', |
599 'controls/button/custom_button_unittest.cc', | 605 'controls/button/custom_button_unittest.cc', |
600 'controls/button/image_button_unittest.cc', | 606 'controls/button/image_button_unittest.cc', |
601 'controls/button/label_button_unittest.cc', | 607 'controls/button/label_button_unittest.cc', |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 }], | 698 }], |
693 ['use_ozone==1', { | 699 ['use_ozone==1', { |
694 'sources!': [ | 700 'sources!': [ |
695 'corewm/capture_controller_unittest.cc', | 701 'corewm/capture_controller_unittest.cc', |
696 ], | 702 ], |
697 }], | 703 }], |
698 ], | 704 ], |
699 }, # target_name: views_unittests | 705 }, # target_name: views_unittests |
700 ], | 706 ], |
701 } | 707 } |
OLD | NEW |