Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(613)

Side by Side Diff: webkit/forms/webkit_forms.gypi

Issue 10897002: Move webkit/forms/ build into a new webkit_forms.gypi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing dependencies Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'webkit_base', 8 'target_name': 'forms',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'defines': ['WEBKIT_FORMS_IMPLEMENTATION'],
11 'dependencies': [ 12 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base', 13 '<(DEPTH)/base/base.gyp:base',
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
13 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
14 '<(DEPTH)/net/net.gyp:net',
15 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 16 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
16 ], 17 ],
17 'defines': ['WEBKIT_BASE_IMPLEMENTATION'],
18 'sources': [ 18 'sources': [
19 'data_element.cc', 19 'form_data.cc',
20 'data_element.h', 20 'form_data.h',
21 'webkit_base_export.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',
22 ], 32 ],
23 'conditions': [ 33 'conditions': [
24 ['inside_chromium_build==0', { 34 ['inside_chromium_build==0', {
25 'dependencies': [ 35 'dependencies': [
26 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 36 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
27 ], 37 ],
28 }], 38 }],
29 ], 39 ],
30 }, 40 },
31 ], 41 ],
32 } 42 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698