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 { |
| 11 # GN version: //ui/views/controls/webview |
11 'target_name': 'webview', | 12 'target_name': 'webview', |
12 'type': '<(component)', | 13 'type': '<(component)', |
13 'dependencies': [ | 14 'dependencies': [ |
14 '../../../../base/base.gyp:base', | 15 '../../../../base/base.gyp:base', |
15 '../../../../base/base.gyp:base_i18n', | 16 '../../../../base/base.gyp:base_i18n', |
16 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', | 17 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', |
17 '../../../../content/content.gyp:content_browser', | 18 '../../../../content/content.gyp:content_browser', |
18 '../../../../skia/skia.gyp:skia', | 19 '../../../../skia/skia.gyp:skia', |
19 '../../../../url/url.gyp:url_lib', | 20 '../../../../url/url.gyp:url_lib', |
20 '../../../base/ui_base.gyp:ui_base', | 21 '../../../base/ui_base.gyp:ui_base', |
21 '../../../events/events.gyp:events', | 22 '../../../events/events.gyp:events', |
22 '../../../gfx/gfx.gyp:gfx', | 23 '../../../gfx/gfx.gyp:gfx', |
23 '../../../gfx/gfx.gyp:gfx_geometry', | 24 '../../../gfx/gfx.gyp:gfx_geometry', |
24 '../../../web_dialogs/web_dialogs.gyp:web_dialogs', | 25 '../../../web_dialogs/web_dialogs.gyp:web_dialogs', |
25 '../../views.gyp:views', | 26 '../../views.gyp:views', |
26 ], | 27 ], |
27 'defines': [ | 28 'defines': [ |
28 'WEBVIEW_IMPLEMENTATION', | 29 'WEBVIEW_IMPLEMENTATION', |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
| 32 # Note: file list duplicated in GN build. |
31 'unhandled_keyboard_event_handler.cc', | 33 'unhandled_keyboard_event_handler.cc', |
32 'unhandled_keyboard_event_handler.h', | 34 'unhandled_keyboard_event_handler.h', |
33 'unhandled_keyboard_event_handler_linux.cc', | 35 'unhandled_keyboard_event_handler_linux.cc', |
34 'unhandled_keyboard_event_handler_win.cc', | 36 'unhandled_keyboard_event_handler_win.cc', |
35 'web_dialog_view.cc', | 37 'web_dialog_view.cc', |
36 'web_dialog_view.h', | 38 'web_dialog_view.h', |
37 'webview.cc', | 39 'webview.cc', |
38 'webview.h', | 40 'webview.h', |
39 'webview_export.h', | 41 'webview_export.h', |
40 ], | 42 ], |
41 }, | 43 }, |
42 ], | 44 ], |
43 } | 45 } |
OLD | NEW |