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 'target_defaults': { | 8 'target_defaults': { |
9 'conditions': [ | 9 'conditions': [ |
10 ['use_aura==1', { | 10 ['use_aura==1', { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 '../wm/wm.gyp:wm_public', | 42 '../wm/wm.gyp:wm_public', |
43 ], | 43 ], |
44 'export_dependent_settings': [ | 44 'export_dependent_settings': [ |
45 '../accessibility/accessibility.gyp:ax_gen', | 45 '../accessibility/accessibility.gyp:ax_gen', |
46 ], | 46 ], |
47 'defines': [ | 47 'defines': [ |
48 'VIEWS_IMPLEMENTATION', | 48 'VIEWS_IMPLEMENTATION', |
49 ], | 49 ], |
50 'sources': [ | 50 'sources': [ |
51 # All .cc, .h under views, except unittests | 51 # All .cc, .h under views, except unittests |
| 52 'accessibility/ax_tree_source_views.cc', |
| 53 'accessibility/ax_tree_source_views.h', |
52 'accessibility/native_view_accessibility.cc', | 54 'accessibility/native_view_accessibility.cc', |
53 'accessibility/native_view_accessibility.h', | 55 'accessibility/native_view_accessibility.h', |
54 'accessibility/native_view_accessibility_win.cc', | 56 'accessibility/native_view_accessibility_win.cc', |
55 'accessibility/native_view_accessibility_win.h', | 57 'accessibility/native_view_accessibility_win.h', |
56 'accessible_pane_view.cc', | 58 'accessible_pane_view.cc', |
57 'accessible_pane_view.h', | 59 'accessible_pane_view.h', |
58 'animation/bounds_animator.cc', | 60 'animation/bounds_animator.cc', |
59 'animation/bounds_animator.h', | 61 'animation/bounds_animator.h', |
60 'animation/scroll_animator.cc', | 62 'animation/scroll_animator.cc', |
61 'animation/scroll_animator.h', | 63 'animation/scroll_animator.h', |
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 '../ui.gyp:ui', | 712 '../ui.gyp:ui', |
711 '../ui_unittests.gyp:ui_test_support', | 713 '../ui_unittests.gyp:ui_test_support', |
712 '../wm/wm.gyp:wm_public', | 714 '../wm/wm.gyp:wm_public', |
713 'views', | 715 'views', |
714 'views_test_support', | 716 'views_test_support', |
715 ], | 717 ], |
716 'include_dirs': [ | 718 'include_dirs': [ |
717 '..', | 719 '..', |
718 ], | 720 ], |
719 'sources': [ | 721 'sources': [ |
| 722 'accessibility/ax_tree_source_views_unittest.cc', |
720 'accessibility/native_view_accessibility_win_unittest.cc', | 723 'accessibility/native_view_accessibility_win_unittest.cc', |
721 'accessible_pane_view_unittest.cc', | 724 'accessible_pane_view_unittest.cc', |
722 'animation/bounds_animator_unittest.cc', | 725 'animation/bounds_animator_unittest.cc', |
723 'bubble/bubble_border_unittest.cc', | 726 'bubble/bubble_border_unittest.cc', |
724 'bubble/bubble_delegate_unittest.cc', | 727 'bubble/bubble_delegate_unittest.cc', |
725 'bubble/bubble_frame_view_unittest.cc', | 728 'bubble/bubble_frame_view_unittest.cc', |
726 'bubble/bubble_window_targeter_unittest.cc', | 729 'bubble/bubble_window_targeter_unittest.cc', |
727 'controls/button/custom_button_unittest.cc', | 730 'controls/button/custom_button_unittest.cc', |
728 'controls/button/image_button_unittest.cc', | 731 'controls/button/image_button_unittest.cc', |
729 'controls/button/label_button_unittest.cc', | 732 'controls/button/label_button_unittest.cc', |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1067 'sources/': [ | 1070 'sources/': [ |
1068 # This is needed because the aura rule strips it from the default | 1071 # This is needed because the aura rule strips it from the default |
1069 # sources list. | 1072 # sources list. |
1070 ['include', '^../../content/app/startup_helper_win.cc'], | 1073 ['include', '^../../content/app/startup_helper_win.cc'], |
1071 ], | 1074 ], |
1072 }], | 1075 }], |
1073 ], | 1076 ], |
1074 }, # target_name: views_examples_with_content_exe | 1077 }, # target_name: views_examples_with_content_exe |
1075 ], | 1078 ], |
1076 } | 1079 } |
OLD | NEW |