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

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: 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 ], 453 ],
455 }], 454 }],
456 ['use_ozone==1', { 455 ['use_ozone==1', {
457 'dependencies': [ 456 'dependencies': [
458 '../events/devices/events_devices.gyp:events_devices', 457 '../events/devices/events_devices.gyp:events_devices',
459 '../events/ozone/events_ozone.gyp:events_ozone_evdev', 458 '../events/ozone/events_ozone.gyp:events_ozone_evdev',
460 '../events/ozone/events_ozone.gyp:events_ozone_layout', 459 '../events/ozone/events_ozone.gyp:events_ozone_layout',
461 '../ozone/ozone.gyp:ozone_base', 460 '../ozone/ozone.gyp:ozone_base',
462 ], 461 ],
463 }], 462 }],
464 ['use_aura==1 and OS=="win"', {
465 'sources/': [
466 ['exclude', 'dragdrop/drag_utils_aura.cc'],
467 ],
468 }],
469 ['use_glib == 1', { 463 ['use_glib == 1', {
470 'dependencies': [ 464 'dependencies': [
471 '../../build/linux/system.gyp:fontconfig', 465 '../../build/linux/system.gyp:fontconfig',
472 '../../build/linux/system.gyp:glib', 466 '../../build/linux/system.gyp:glib',
473 ], 467 ],
474 }], 468 }],
475 ['OS=="linux"', { 469 ['OS=="linux"', {
476 'conditions': [ 470 'conditions': [
477 ['toolkit_views==0 and use_aura==0', { 471 ['toolkit_views==0 and use_aura==0', {
478 # Note: because of gyp predence rules this has to be defined as 472 # Note: because of gyp predence rules this has to be defined as
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 }], 561 }],
568 ], 562 ],
569 }], 563 }],
570 ['OS=="mac"', { 564 ['OS=="mac"', {
571 'dependencies': [ 565 'dependencies': [
572 '../../third_party/mozilla/mozilla.gyp:mozilla', 566 '../../third_party/mozilla/mozilla.gyp:mozilla',
573 ], 567 ],
574 'sources!': [ 568 'sources!': [
575 'cursor/image_cursors.cc', 569 'cursor/image_cursors.cc',
576 'cursor/image_cursors.h', 570 'cursor/image_cursors.h',
577 'dragdrop/drag_utils.cc',
578 'dragdrop/drag_utils.h', 571 'dragdrop/drag_utils.h',
tapted 2016/05/26 12:31:42 remove
spqchan 2016/05/27 23:25:48 Done.
579 ], 572 ],
580 'link_settings': { 573 'link_settings': {
581 'libraries': [ 574 'libraries': [
582 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 575 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
583 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 576 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
584 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 577 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
585 ], 578 ],
586 }, 579 },
587 }], 580 }],
588 ['use_x11==1', { 581 ['use_x11==1', {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 ], 766 ],
774 'variables': { 767 'variables': {
775 'jni_gen_package': 'ui', 768 'jni_gen_package': 'ui',
776 }, 769 },
777 'includes': [ '../../build/jni_generator.gypi' ], 770 'includes': [ '../../build/jni_generator.gypi' ],
778 }, 771 },
779 ], 772 ],
780 }], 773 }],
781 ], 774 ],
782 } 775 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698