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