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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
130 'base/cocoa/fullscreen_window_manager.h', | 130 'base/cocoa/fullscreen_window_manager.h', |
131 'base/cocoa/fullscreen_window_manager.mm', | 131 'base/cocoa/fullscreen_window_manager.mm', |
132 'base/cocoa/nib_loading.h', | 132 'base/cocoa/nib_loading.h', |
133 'base/cocoa/nib_loading.mm', | 133 'base/cocoa/nib_loading.mm', |
134 'base/cocoa/underlay_opengl_hosting_window.h', | 134 'base/cocoa/underlay_opengl_hosting_window.h', |
135 'base/cocoa/underlay_opengl_hosting_window.mm', | 135 'base/cocoa/underlay_opengl_hosting_window.mm', |
136 'base/cocoa/window_size_constants.h', | 136 'base/cocoa/window_size_constants.h', |
137 'base/cocoa/window_size_constants.mm', | 137 'base/cocoa/window_size_constants.mm', |
138 'base/cursor/cursor.cc', | 138 'base/cursor/cursor.cc', |
139 'base/cursor/cursor.h', | 139 'base/cursor/cursor.h', |
140 'base/cursor/cursor_loader.h', | |
141 'base/cursor/cursor_loader_win.cc', | |
142 'base/cursor/cursor_loader_win.h', | |
143 'base/cursor/cursor_loader_x11.cc', | |
144 'base/cursor/cursor_loader_x11.h', | |
140 'base/cursor/cursor_win.cc', | 145 'base/cursor/cursor_win.cc', |
141 'base/cursor/cursor_x11.cc', | 146 'base/cursor/cursor_x11.cc', |
142 'base/dialogs/base_shell_dialog.cc', | 147 'base/dialogs/base_shell_dialog.cc', |
143 'base/dialogs/base_shell_dialog.h', | 148 'base/dialogs/base_shell_dialog.h', |
144 'base/dialogs/base_shell_dialog_win.cc', | 149 'base/dialogs/base_shell_dialog_win.cc', |
145 'base/dialogs/base_shell_dialog_win.h', | 150 'base/dialogs/base_shell_dialog_win.h', |
146 'base/dialogs/gtk/select_file_dialog_impl.cc', | 151 'base/dialogs/gtk/select_file_dialog_impl.cc', |
147 'base/dialogs/gtk/select_file_dialog_impl.h', | 152 'base/dialogs/gtk/select_file_dialog_impl.h', |
148 'base/dialogs/gtk/select_file_dialog_impl_gtk.cc', | 153 'base/dialogs/gtk/select_file_dialog_impl_gtk.cc', |
149 'base/dialogs/gtk/select_file_dialog_impl_kde.cc', | 154 'base/dialogs/gtk/select_file_dialog_impl_kde.cc', |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
735 ], | 740 ], |
736 }, | 741 }, |
737 }, | 742 }, |
738 }, { # use_x11==0 | 743 }, { # use_x11==0 |
739 'sources/': [ | 744 'sources/': [ |
740 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], | 745 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], |
741 ['exclude', 'base/x/*'], | 746 ['exclude', 'base/x/*'], |
742 ], | 747 ], |
743 }], | 748 }], |
744 ['toolkit_views==0', { | 749 ['toolkit_views==0', { |
745 'sources!': [ | 750 'sources!': [ |
oshima
2012/09/07 19:52:01
this exclusion is a bit unintuitive. can you add b
mazda
2012/09/07 22:38:14
The block of "use_aura !=1" seems a better place b
| |
751 'base/cursor/cursor_loader_x11.cc', | |
752 'base/cursor/cursor_loader_x11.h', | |
746 'base/event.cc', | 753 'base/event.cc', |
747 'base/events/event.h', | 754 'base/events/event.h', |
748 'base/x/events_x.cc', | 755 'base/x/events_x.cc', |
749 ], | 756 ], |
750 }], | 757 }], |
751 ['OS=="android"', { | 758 ['OS=="android"', { |
752 'sources!': [ | 759 'sources!': [ |
753 'base/dragdrop/drag_utils.cc', | 760 'base/dragdrop/drag_utils.cc', |
754 'base/dragdrop/drag_utils.h', | 761 'base/dragdrop/drag_utils.h', |
755 'base/touch/touch_factory.cc', | 762 'base/touch/touch_factory.cc', |
(...skipping 24 matching lines...) Expand all Loading... | |
780 }, | 787 }, |
781 ], | 788 ], |
782 'conditions': [ | 789 'conditions': [ |
783 ['inside_chromium_build == 1', { | 790 ['inside_chromium_build == 1', { |
784 'includes': [ | 791 'includes': [ |
785 'ui_unittests.gypi', | 792 'ui_unittests.gypi', |
786 ]}, | 793 ]}, |
787 ], | 794 ], |
788 ], | 795 ], |
789 } | 796 } |
OLD | NEW |