OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'webview', |
| 12 'type': '<(component)', |
| 13 'dependencies': [ |
| 14 '../../../../base/base.gyp:base', |
| 15 '../../../../base/base.gyp:base_i18n', |
| 16 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', |
| 17 '../../../../build/temp_gyp/googleurl.gyp:googleurl', |
| 18 '../../../../content/content.gyp:content', |
| 19 '../../../../skia/skia.gyp:skia', |
| 20 '../../../ui.gyp:ui', |
| 21 '../../../web_dialogs/web_dialogs.gyp:web_dialogs', |
| 22 '../../views.gyp:views', |
| 23 ], |
| 24 'defines': [ |
| 25 'WEBVIEW_IMPLEMENTATION', |
| 26 ], |
| 27 'sources': [ |
| 28 'web_dialog_view.cc', |
| 29 'web_dialog_view.h', |
| 30 'webview.cc', |
| 31 'webview.h', |
| 32 'webview_export.h', |
| 33 ], |
| 34 }, |
| 35 ], |
| 36 } |
OLD | NEW |