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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'base/cocoa/underlay_opengl_hosting_window.h', | 120 'base/cocoa/underlay_opengl_hosting_window.h', |
121 'base/cocoa/underlay_opengl_hosting_window.mm', | 121 'base/cocoa/underlay_opengl_hosting_window.mm', |
122 'base/cocoa/view_description.h', | 122 'base/cocoa/view_description.h', |
123 'base/cocoa/view_description.mm', | 123 'base/cocoa/view_description.mm', |
124 'base/cocoa/window_size_constants.h', | 124 'base/cocoa/window_size_constants.h', |
125 'base/cocoa/window_size_constants.mm', | 125 'base/cocoa/window_size_constants.mm', |
126 'base/cursor/cursor.cc', | 126 'base/cursor/cursor.cc', |
127 'base/cursor/cursor.h', | 127 'base/cursor/cursor.h', |
128 'base/cursor/cursor_android.cc', | 128 'base/cursor/cursor_android.cc', |
129 'base/cursor/cursor_loader.h', | 129 'base/cursor/cursor_loader.h', |
130 'base/cursor/cursor_loader_null.cc', | 130 'base/cursor/cursor_loader_ozone.cc', |
131 'base/cursor/cursor_loader_null.h', | 131 'base/cursor/cursor_loader_ozone.h', |
132 'base/cursor/cursor_loader_win.cc', | 132 'base/cursor/cursor_loader_win.cc', |
133 'base/cursor/cursor_loader_win.h', | 133 'base/cursor/cursor_loader_win.h', |
134 'base/cursor/cursor_loader_x11.cc', | 134 'base/cursor/cursor_loader_x11.cc', |
135 'base/cursor/cursor_loader_x11.h', | 135 'base/cursor/cursor_loader_x11.h', |
136 'base/cursor/cursor_null.cc', | 136 'base/cursor/cursor_ozone.cc', |
137 'base/cursor/cursor_mac.mm', | 137 'base/cursor/cursor_mac.mm', |
138 'base/cursor/cursor_win.cc', | 138 'base/cursor/cursor_win.cc', |
139 'base/cursor/cursor_x11.cc', | 139 'base/cursor/cursor_x11.cc', |
140 'base/cursor/cursors_aura.cc', | 140 'base/cursor/cursors_aura.cc', |
141 'base/cursor/cursors_aura.h', | 141 'base/cursor/cursors_aura.h', |
142 'base/default_theme_provider.cc', | 142 'base/default_theme_provider.cc', |
143 'base/default_theme_provider.h', | 143 'base/default_theme_provider.h', |
144 'base/default_theme_provider_mac.mm', | 144 'base/default_theme_provider_mac.mm', |
145 'base/device_form_factor_android.cc', | 145 'base/device_form_factor_android.cc', |
146 'base/device_form_factor_desktop.cc', | 146 'base/device_form_factor_desktop.cc', |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 ], | 529 ], |
530 }, | 530 }, |
531 'dependencies': [ | 531 'dependencies': [ |
532 '../build/linux/system.gyp:x11', | 532 '../build/linux/system.gyp:x11', |
533 '../build/linux/system.gyp:xcursor', | 533 '../build/linux/system.gyp:xcursor', |
534 '../build/linux/system.gyp:xext', | 534 '../build/linux/system.gyp:xext', |
535 '../build/linux/system.gyp:xfixes', | 535 '../build/linux/system.gyp:xfixes', |
536 '../build/linux/system.gyp:xrender', # For XRender* function calls
in x11_util.cc. | 536 '../build/linux/system.gyp:xrender', # For XRender* function calls
in x11_util.cc. |
537 ], | 537 ], |
538 }], | 538 }], |
539 ['use_ozone==0', { | |
540 'sources!': [ | |
541 'base/cursor/cursor_null.cc', | |
542 'base/cursor/cursor_loader_null.cc', | |
543 'base/cursor/cursor_loader_null.h', | |
544 ], | |
545 }], | |
546 ['toolkit_views==0', { | 539 ['toolkit_views==0', { |
547 'sources!': [ | 540 'sources!': [ |
548 'base/dragdrop/drop_target_event.cc', | 541 'base/dragdrop/drop_target_event.cc', |
549 'base/dragdrop/drop_target_event.h', | 542 'base/dragdrop/drop_target_event.h', |
550 ], | 543 ], |
551 }], | 544 }], |
552 ['OS=="android"', { | 545 ['OS=="android"', { |
553 'sources!': [ | 546 'sources!': [ |
554 'base/accessibility/accessible_text_utils.cc', | 547 'base/accessibility/accessible_text_utils.cc', |
555 'base/accessibility/accessible_view_state.cc', | 548 'base/accessibility/accessible_view_state.cc', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 'variables': { | 625 'variables': { |
633 'jni_gen_package': 'ui', | 626 'jni_gen_package': 'ui', |
634 'jni_generator_ptr_type': 'long', | 627 'jni_generator_ptr_type': 'long', |
635 }, | 628 }, |
636 'includes': [ '../build/jni_generator.gypi' ], | 629 'includes': [ '../build/jni_generator.gypi' ], |
637 }, | 630 }, |
638 ], | 631 ], |
639 }], | 632 }], |
640 ], | 633 ], |
641 } | 634 } |
OLD | NEW |