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

Side by Side Diff: ui/ui.gyp

Issue 14736007: Expose os_exchange_data_provider_chromeos to aura builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix extraneous gyp line Created 7 years, 7 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
« no previous file with comments | « ui/base/dragdrop/os_exchange_data_provider_chromeos.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 'base/dragdrop/drag_utils_aura.cc', 143 'base/dragdrop/drag_utils_aura.cc',
144 'base/dragdrop/drag_utils_win.cc', 144 'base/dragdrop/drag_utils_win.cc',
145 'base/dragdrop/drop_target_win.cc', 145 'base/dragdrop/drop_target_win.cc',
146 'base/dragdrop/drop_target_win.h', 146 'base/dragdrop/drop_target_win.h',
147 'base/dragdrop/gtk_dnd_util.cc', 147 'base/dragdrop/gtk_dnd_util.cc',
148 'base/dragdrop/gtk_dnd_util.h', 148 'base/dragdrop/gtk_dnd_util.h',
149 'base/dragdrop/os_exchange_data.cc', 149 'base/dragdrop/os_exchange_data.cc',
150 'base/dragdrop/os_exchange_data.h', 150 'base/dragdrop/os_exchange_data.h',
151 'base/dragdrop/os_exchange_data_provider_aurax11.cc', 151 'base/dragdrop/os_exchange_data_provider_aurax11.cc',
152 'base/dragdrop/os_exchange_data_provider_aurax11.h', 152 'base/dragdrop/os_exchange_data_provider_aurax11.h',
153 'base/dragdrop/os_exchange_data_provider_chromeos.cc', 153 'base/dragdrop/os_exchange_data_provider_aura.cc',
154 'base/dragdrop/os_exchange_data_provider_chromeos.h', 154 'base/dragdrop/os_exchange_data_provider_aura.h',
155 'base/dragdrop/os_exchange_data_provider_win.cc', 155 'base/dragdrop/os_exchange_data_provider_win.cc',
156 'base/dragdrop/os_exchange_data_provider_win.h', 156 'base/dragdrop/os_exchange_data_provider_win.h',
157 'base/events/event.cc', 157 'base/events/event.cc',
158 'base/events/event.h', 158 'base/events/event.h',
159 'base/events/event_constants.h', 159 'base/events/event_constants.h',
160 'base/events/event_conversion_gtk.cc', 160 'base/events/event_conversion_gtk.cc',
161 'base/events/event_conversion_gtk.h', 161 'base/events/event_conversion_gtk.h',
162 'base/events/event_dispatcher.cc', 162 'base/events/event_dispatcher.cc',
163 'base/events/event_dispatcher.h', 163 'base/events/event_dispatcher.h',
164 'base/events/event_handler.cc', 164 'base/events/event_handler.cc',
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 }], 695 }],
696 ['chromeos==1 or (use_aura==1 and OS=="linux" and use_x11==0)', { 696 ['chromeos==1 or (use_aura==1 and OS=="linux" and use_x11==0)', {
697 'sources!': [ 697 'sources!': [
698 'base/clipboard/clipboard_aurax11.cc', 698 'base/clipboard/clipboard_aurax11.cc',
699 'base/dragdrop/os_exchange_data_provider_aurax11.cc', 699 'base/dragdrop/os_exchange_data_provider_aurax11.cc',
700 'base/touch/touch_device.cc', 700 'base/touch/touch_device.cc',
701 ], 701 ],
702 }, { 702 }, {
703 'sources!': [ 703 'sources!': [
704 'base/clipboard/clipboard_aura.cc', 704 'base/clipboard/clipboard_aura.cc',
705 'base/dragdrop/os_exchange_data_provider_aura.cc',
706 'base/dragdrop/os_exchange_data_provider_aura.h',
705 'base/touch/touch_device_aurax11.cc', 707 'base/touch/touch_device_aurax11.cc',
706 ], 708 ],
707 }], 709 }],
708 ['OS=="win"', { 710 ['OS=="win"', {
709 'sources': [ 711 'sources': [
710 'gfx/gdi_util.cc', 712 'gfx/gdi_util.cc',
711 'gfx/gdi_util.h', 713 'gfx/gdi_util.h',
712 'gfx/icon_util.cc', 714 'gfx/icon_util.cc',
713 'gfx/icon_util.h', 715 'gfx/icon_util.h',
714 ], 716 ],
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 'xcode_settings': { 1004 'xcode_settings': {
1003 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1005 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1004 }, 1006 },
1005 }], 1007 }],
1006 ], 1008 ],
1007 }, 1009 },
1008 ], 1010 ],
1009 }], 1011 }],
1010 ], 1012 ],
1011 } 1013 }
OLDNEW
« no previous file with comments | « ui/base/dragdrop/os_exchange_data_provider_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698