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 'targets': [ | |
7 { | |
8 'target_name': 'forms', | |
9 'type': '<(component)', | |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | |
11 'defines': ['WEBKIT_FORMS_IMPLEMENTATION'], | |
12 'dependencies': [ | |
13 '<(DEPTH)/base/base.gyp:base', | |
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | |
15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
16 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | |
17 ], | |
18 'sources': [ | |
19 'form_data.cc', | |
20 'form_data.h', | |
21 'form_data_predictions.cc', | |
22 'form_data_predictions.h', | |
23 'form_field.cc', | |
24 'form_field.h', | |
25 'form_field_predictions.cc', | |
26 'form_field_predictions.h', | |
27 'password_form.cc', | |
28 'password_form.h', | |
29 'password_form_dom_manager.cc', | |
30 'password_form_dom_manager.h', | |
31 'webkit_forms_export.h', | |
32 ], | |
33 'conditions': [ | |
34 ['inside_chromium_build==0', { | |
35 'dependencies': [ | |
36 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | |
37 ], | |
38 }], | |
39 ], | |
40 }, | |
41 ], | |
42 } | |
OLD | NEW |