| 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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!': [ |
| 751 'base/cursor/cursor_loader_x11.cc', |
| 752 'base/cursor/cursor_loader_x11.h', |
| 753 'base/event.cc', |
| 746 'base/events/event.cc', | 754 'base/events/event.cc', |
| 747 'base/events/event.h', | 755 'base/events/event.h', |
| 748 'base/x/events_x.cc', | 756 'base/x/events_x.cc', |
| 749 ], | 757 ], |
| 750 }], | 758 }], |
| 751 ['OS=="android"', { | 759 ['OS=="android"', { |
| 752 'sources!': [ | 760 'sources!': [ |
| 753 'base/dragdrop/drag_utils.cc', | 761 'base/dragdrop/drag_utils.cc', |
| 754 'base/dragdrop/drag_utils.h', | 762 'base/dragdrop/drag_utils.h', |
| 755 'base/touch/touch_factory.cc', | 763 'base/touch/touch_factory.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 780 }, | 788 }, |
| 781 ], | 789 ], |
| 782 'conditions': [ | 790 'conditions': [ |
| 783 ['inside_chromium_build == 1', { | 791 ['inside_chromium_build == 1', { |
| 784 'includes': [ | 792 'includes': [ |
| 785 'ui_unittests.gypi', | 793 'ui_unittests.gypi', |
| 786 ]}, | 794 ]}, |
| 787 ], | 795 ], |
| 788 ], | 796 ], |
| 789 } | 797 } |
| OLD | NEW |