Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: ui/base/ui_base.gyp

Issue 258893002: app_shell: Add support for mouse cursors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove cursor copy and hopefully fix mac build Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'cursor/cursor_loader_x11.cc', 125 'cursor/cursor_loader_x11.cc',
126 'cursor/cursor_loader_x11.h', 126 'cursor/cursor_loader_x11.h',
127 'cursor/cursor_ozone.cc', 127 'cursor/cursor_ozone.cc',
128 'cursor/cursor_mac.mm', 128 'cursor/cursor_mac.mm',
129 'cursor/cursor_util.cc', 129 'cursor/cursor_util.cc',
130 'cursor/cursor_util.h', 130 'cursor/cursor_util.h',
131 'cursor/cursor_win.cc', 131 'cursor/cursor_win.cc',
132 'cursor/cursor_x11.cc', 132 'cursor/cursor_x11.cc',
133 'cursor/cursors_aura.cc', 133 'cursor/cursors_aura.cc',
134 'cursor/cursors_aura.h', 134 'cursor/cursors_aura.h',
135 'cursor/image_cursors.cc',
136 'cursor/image_cursors.h',
135 'cursor/ozone/bitmap_cursor_factory_ozone.cc', 137 'cursor/ozone/bitmap_cursor_factory_ozone.cc',
136 'cursor/ozone/bitmap_cursor_factory_ozone.h', 138 'cursor/ozone/bitmap_cursor_factory_ozone.h',
137 'cursor/ozone/cursor_factory_ozone.cc', 139 'cursor/ozone/cursor_factory_ozone.cc',
138 'cursor/ozone/cursor_factory_ozone.h', 140 'cursor/ozone/cursor_factory_ozone.h',
139 'default_theme_provider.cc', 141 'default_theme_provider.cc',
140 'default_theme_provider.h', 142 'default_theme_provider.h',
141 'default_theme_provider_mac.mm', 143 'default_theme_provider_mac.mm',
142 'device_form_factor_android.cc', 144 'device_form_factor_android.cc',
143 'device_form_factor_android.h', 145 'device_form_factor_android.h',
144 'device_form_factor_desktop.cc', 146 'device_form_factor_desktop.cc',
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 'sources!': [ 474 'sources!': [
473 'dragdrop/drag_drop_types.h', 475 'dragdrop/drag_drop_types.h',
474 'dragdrop/os_exchange_data.cc', 476 'dragdrop/os_exchange_data.cc',
475 ], 477 ],
476 }], 478 }],
477 ['OS=="mac"', { 479 ['OS=="mac"', {
478 'dependencies': [ 480 'dependencies': [
479 '../../third_party/mozilla/mozilla.gyp:mozilla', 481 '../../third_party/mozilla/mozilla.gyp:mozilla',
480 ], 482 ],
481 'sources!': [ 483 'sources!': [
484 'cursor/image_cursors.cc',
485 'cursor/image_cursors.h',
482 'dragdrop/drag_utils.cc', 486 'dragdrop/drag_utils.cc',
483 'dragdrop/drag_utils.h', 487 'dragdrop/drag_utils.h',
484 ], 488 ],
485 'link_settings': { 489 'link_settings': {
486 'libraries': [ 490 'libraries': [
487 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 491 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
488 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 492 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
489 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 493 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
490 ], 494 ],
491 }, 495 },
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'variables': { 628 'variables': {
625 'jni_gen_package': 'ui', 629 'jni_gen_package': 'ui',
626 'jni_generator_ptr_type': 'long', 630 'jni_generator_ptr_type': 'long',
627 }, 631 },
628 'includes': [ '../../build/jni_generator.gypi' ], 632 'includes': [ '../../build/jni_generator.gypi' ],
629 }, 633 },
630 ], 634 ],
631 }], 635 }],
632 ], 636 ],
633 } 637 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698