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

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

Issue 1964283002: MacViews: Implemented Drag & Drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix for dcheng Created 4 years, 6 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
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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 'default_theme_provider_mac.mm', 215 'default_theme_provider_mac.mm',
216 'default_style.h', 216 'default_style.h',
217 'device_form_factor.h', 217 'device_form_factor.h',
218 'device_form_factor_android.cc', 218 'device_form_factor_android.cc',
219 'device_form_factor_android.h', 219 'device_form_factor_android.h',
220 'device_form_factor_desktop.cc', 220 'device_form_factor_desktop.cc',
221 'device_form_factor_ios.mm', 221 'device_form_factor_ios.mm',
222 'dragdrop/cocoa_dnd_util.h', 222 'dragdrop/cocoa_dnd_util.h',
223 'dragdrop/cocoa_dnd_util.mm', 223 'dragdrop/cocoa_dnd_util.mm',
224 'dragdrop/drag_drop_types.h', 224 'dragdrop/drag_drop_types.h',
225 'dragdrop/drag_drop_types_mac.mm',
225 'dragdrop/drag_drop_types_win.cc', 226 'dragdrop/drag_drop_types_win.cc',
226 'dragdrop/drag_source_win.cc', 227 'dragdrop/drag_source_win.cc',
227 'dragdrop/drag_source_win.h', 228 'dragdrop/drag_source_win.h',
228 'dragdrop/drag_utils.cc', 229 'dragdrop/drag_utils.cc',
229 'dragdrop/drag_utils.h', 230 'dragdrop/drag_utils.h',
230 'dragdrop/drag_utils_aura.cc',
231 'dragdrop/drag_utils_mac.mm',
232 'dragdrop/drag_utils_win.cc', 231 'dragdrop/drag_utils_win.cc',
233 'dragdrop/drop_target_event.cc', 232 'dragdrop/drop_target_event.cc',
234 'dragdrop/drop_target_event.h', 233 'dragdrop/drop_target_event.h',
235 'dragdrop/drop_target_win.cc', 234 'dragdrop/drop_target_win.cc',
236 'dragdrop/drop_target_win.h', 235 'dragdrop/drop_target_win.h',
237 'dragdrop/file_info.cc', 236 'dragdrop/file_info.cc',
238 'dragdrop/file_info.h', 237 'dragdrop/file_info.h',
239 'dragdrop/os_exchange_data.cc', 238 'dragdrop/os_exchange_data.cc',
240 'dragdrop/os_exchange_data.h', 239 'dragdrop/os_exchange_data.h',
241 'dragdrop/os_exchange_data_provider_aura.cc', 240 'dragdrop/os_exchange_data_provider_aura.cc',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 ], 456 ],
458 }], 457 }],
459 ['use_ozone==1', { 458 ['use_ozone==1', {
460 'dependencies': [ 459 'dependencies': [
461 '../events/devices/events_devices.gyp:events_devices', 460 '../events/devices/events_devices.gyp:events_devices',
462 '../events/ozone/events_ozone.gyp:events_ozone_evdev', 461 '../events/ozone/events_ozone.gyp:events_ozone_evdev',
463 '../events/ozone/events_ozone.gyp:events_ozone_layout', 462 '../events/ozone/events_ozone.gyp:events_ozone_layout',
464 '../ozone/ozone.gyp:ozone_base', 463 '../ozone/ozone.gyp:ozone_base',
465 ], 464 ],
466 }], 465 }],
467 ['use_aura==1 and OS=="win"', {
468 'sources/': [
469 ['exclude', 'dragdrop/drag_utils_aura.cc'],
470 ],
471 }],
472 ['use_glib == 1', { 466 ['use_glib == 1', {
473 'dependencies': [ 467 'dependencies': [
474 '../../build/linux/system.gyp:fontconfig', 468 '../../build/linux/system.gyp:fontconfig',
475 '../../build/linux/system.gyp:glib', 469 '../../build/linux/system.gyp:glib',
476 ], 470 ],
477 }], 471 }],
478 ['OS=="linux"', { 472 ['OS=="linux"', {
479 'conditions': [ 473 'conditions': [
480 ['toolkit_views==0 and use_aura==0', { 474 ['toolkit_views==0 and use_aura==0', {
481 # Note: because of gyp predence rules this has to be defined as 475 # Note: because of gyp predence rules this has to be defined as
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 }], 564 }],
571 ], 565 ],
572 }], 566 }],
573 ['OS=="mac"', { 567 ['OS=="mac"', {
574 'dependencies': [ 568 'dependencies': [
575 '../../third_party/mozilla/mozilla.gyp:mozilla', 569 '../../third_party/mozilla/mozilla.gyp:mozilla',
576 ], 570 ],
577 'sources!': [ 571 'sources!': [
578 'cursor/image_cursors.cc', 572 'cursor/image_cursors.cc',
579 'cursor/image_cursors.h', 573 'cursor/image_cursors.h',
580 'dragdrop/drag_utils.cc',
581 'dragdrop/drag_utils.h',
582 ], 574 ],
583 'link_settings': { 575 'link_settings': {
584 'libraries': [ 576 'libraries': [
585 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 577 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
586 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 578 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
587 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 579 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
588 ], 580 ],
589 }, 581 },
590 }], 582 }],
591 ['use_x11==1', { 583 ['use_x11==1', {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 ], 768 ],
777 'variables': { 769 'variables': {
778 'jni_gen_package': 'ui', 770 'jni_gen_package': 'ui',
779 }, 771 },
780 'includes': [ '../../build/jni_generator.gypi' ], 772 'includes': [ '../../build/jni_generator.gypi' ],
781 }, 773 },
782 ], 774 ],
783 }], 775 }],
784 ], 776 ],
785 } 777 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698