OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |