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

Side by Side Diff: webkit/glue/webkit_glue.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 | « webkit/forms/webkit_forms.gypi ('k') | webkit/support/webkit_support.gyp » ('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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 'user_agent.cc', 111 'user_agent.cc',
112 'user_agent.h', 112 'user_agent.h',
113 ], 113 ],
114 }, 114 },
115 { 115 {
116 'target_name': 'glue', 116 'target_name': 'glue',
117 'type': '<(component)', 117 'type': '<(component)',
118 'variables': { 'enable_wexit_time_destructors': 1, }, 118 'variables': { 'enable_wexit_time_destructors': 1, },
119 'defines': [ 119 'defines': [
120 'WEBKIT_EXTENSIONS_IMPLEMENTATION', 120 'WEBKIT_EXTENSIONS_IMPLEMENTATION',
121 'WEBKIT_FORMS_IMPLEMENTATION',
122 'WEBKIT_GLUE_IMPLEMENTATION', 121 'WEBKIT_GLUE_IMPLEMENTATION',
123 'WEBKIT_PLUGINS_IMPLEMENTATION', 122 'WEBKIT_PLUGINS_IMPLEMENTATION',
124 ], 123 ],
125 'dependencies': [ 124 'dependencies': [
126 '<(DEPTH)/base/base.gyp:base_i18n', 125 '<(DEPTH)/base/base.gyp:base_i18n',
127 '<(DEPTH)/base/base.gyp:base_static', 126 '<(DEPTH)/base/base.gyp:base_static',
128 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 127 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
129 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 128 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
130 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', 129 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib',
131 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', 130 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation',
132 '<(DEPTH)/media/media.gyp:media', 131 '<(DEPTH)/media/media.gyp:media',
133 '<(DEPTH)/media/media.gyp:shared_memory_support', 132 '<(DEPTH)/media/media.gyp:shared_memory_support',
134 '<(DEPTH)/net/net.gyp:net', 133 '<(DEPTH)/net/net.gyp:net',
135 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', 134 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c',
136 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', 135 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared',
137 '<(DEPTH)/printing/printing.gyp:printing', 136 '<(DEPTH)/printing/printing.gyp:printing',
138 '<(DEPTH)/skia/skia.gyp:skia', 137 '<(DEPTH)/skia/skia.gyp:skia',
139 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 138 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
140 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 139 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
141 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 140 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
142 '<(DEPTH)/ui/gl/gl.gyp:gl', 141 '<(DEPTH)/ui/gl/gl.gyp:gl',
143 '<(DEPTH)/ui/ui.gyp:ui', 142 '<(DEPTH)/ui/ui.gyp:ui',
144 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 143 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
145 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support', 144 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support',
146 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 145 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
147 'blob', 146 'blob',
148 'fileapi', 147 'fileapi',
148 'forms',
149 'webkit_base', 149 'webkit_base',
150 'webkit_media', 150 'webkit_media',
151 'webkit_resources', 151 'webkit_resources',
152 'webkit_strings', 152 'webkit_strings',
153 'webkit_user_agent', 153 'webkit_user_agent',
154 ], 154 ],
155 'include_dirs': [ 155 'include_dirs': [
156 '<(INTERMEDIATE_DIR)', 156 '<(INTERMEDIATE_DIR)',
157 '<(SHARED_INTERMEDIATE_DIR)/webkit', 157 '<(SHARED_INTERMEDIATE_DIR)/webkit',
158 ], 158 ],
159 'sources': [ 159 'sources': [
160 # This list contains all .h, .cc, and .mm files in glue except for 160 # This list contains all .h, .cc, and .mm files in glue except for
161 # those in the test subdirectory and those with unittest in in their 161 # those in the test subdirectory and those with unittest in in their
162 # names. 162 # names.
163 '../forms/form_data.cc',
164 '../forms/form_data.h',
165 '../forms/form_data_predictions.cc',
166 '../forms/form_data_predictions.h',
167 '../forms/form_field.cc',
168 '../forms/form_field.h',
169 '../forms/form_field_predictions.cc',
170 '../forms/form_field_predictions.h',
171 '../forms/password_form.cc',
172 '../forms/password_form.h',
173 '../forms/password_form_dom_manager.cc',
174 '../forms/password_form_dom_manager.h',
175 '../forms/webkit_forms_export.h',
176 '../plugins/npapi/carbon_plugin_window_tracker_mac.cc', 163 '../plugins/npapi/carbon_plugin_window_tracker_mac.cc',
177 '../plugins/npapi/carbon_plugin_window_tracker_mac.h', 164 '../plugins/npapi/carbon_plugin_window_tracker_mac.h',
178 '../plugins/npapi/gtk_plugin_container.cc', 165 '../plugins/npapi/gtk_plugin_container.cc',
179 '../plugins/npapi/gtk_plugin_container.h', 166 '../plugins/npapi/gtk_plugin_container.h',
180 '../plugins/npapi/gtk_plugin_container_manager.cc', 167 '../plugins/npapi/gtk_plugin_container_manager.cc',
181 '../plugins/npapi/gtk_plugin_container_manager.h', 168 '../plugins/npapi/gtk_plugin_container_manager.h',
182 '../plugins/npapi/plugin_constants_win.cc', 169 '../plugins/npapi/plugin_constants_win.cc',
183 '../plugins/npapi/plugin_constants_win.h', 170 '../plugins/npapi/plugin_constants_win.h',
184 '../plugins/npapi/plugin_group.cc', 171 '../plugins/npapi/plugin_group.cc',
185 '../plugins/npapi/plugin_group.h', 172 '../plugins/npapi/plugin_group.h',
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 }, 555 },
569 'includes': [ '../../build/grit_action.gypi' ], 556 'includes': [ '../../build/grit_action.gypi' ],
570 }, 557 },
571 ], 558 ],
572 'includes': [ '../../build/grit_target.gypi' ], 559 'includes': [ '../../build/grit_target.gypi' ],
573 }, 560 },
574 ], 561 ],
575 }], 562 }],
576 ], 563 ],
577 } 564 }
OLDNEW
« no previous file with comments | « webkit/forms/webkit_forms.gypi ('k') | webkit/support/webkit_support.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698