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

Side by Side Diff: ui/views/controls/webview/webview.gyp

Issue 11444013: Get drag and drop working for win aura. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move DropTargetWin to DesktopDragDropClientWin Created 8 years 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 (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 13 matching lines...) Expand all
24 'defines': [ 24 'defines': [
25 'WEBVIEW_IMPLEMENTATION', 25 'WEBVIEW_IMPLEMENTATION',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'web_dialog_view.cc', 28 'web_dialog_view.cc',
29 'web_dialog_view.h', 29 'web_dialog_view.h',
30 'webview.cc', 30 'webview.cc',
31 'webview.h', 31 'webview.h',
32 'webview_export.h', 32 'webview_export.h',
33 ], 33 ],
34 'conditions': [
35 ['OS=="win" and use_aura==1', {
36 'dependencies': [
37 '../../../aura/aura.gyp:aura',
38 ],
39 }],
40 ],
34 }, 41 },
35 ], 42 ],
36 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698