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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 years 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/glue/password_form_dom_manager.cc ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'user_agent.cc', 103 'user_agent.cc',
104 'user_agent.h', 104 'user_agent.h',
105 ], 105 ],
106 }, 106 },
107 { 107 {
108 'target_name': 'glue', 108 'target_name': 'glue',
109 'type': '<(component)', 109 'type': '<(component)',
110 'variables': { 'enable_wexit_time_destructors': 1, }, 110 'variables': { 'enable_wexit_time_destructors': 1, },
111 'defines': [ 111 'defines': [
112 'WEBKIT_EXTENSIONS_IMPLEMENTATION', 112 'WEBKIT_EXTENSIONS_IMPLEMENTATION',
113 'WEBKIT_FORMS_IMPLEMENTATION',
113 'WEBKIT_GLUE_IMPLEMENTATION', 114 'WEBKIT_GLUE_IMPLEMENTATION',
114 'WEBKIT_PLUGINS_IMPLEMENTATION', 115 'WEBKIT_PLUGINS_IMPLEMENTATION',
115 ], 116 ],
116 'dependencies': [ 117 'dependencies': [
117 '<(DEPTH)/base/base.gyp:base_i18n', 118 '<(DEPTH)/base/base.gyp:base_i18n',
118 '<(DEPTH)/base/base.gyp:base_static', 119 '<(DEPTH)/base/base.gyp:base_static',
119 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 120 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
120 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 121 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
121 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', 122 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib',
122 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', 123 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation',
(...skipping 17 matching lines...) Expand all
140 'actions': [ 141 'actions': [
141 ], 142 ],
142 'include_dirs': [ 143 'include_dirs': [
143 '<(INTERMEDIATE_DIR)', 144 '<(INTERMEDIATE_DIR)',
144 '<(SHARED_INTERMEDIATE_DIR)/webkit', 145 '<(SHARED_INTERMEDIATE_DIR)/webkit',
145 ], 146 ],
146 'sources': [ 147 'sources': [
147 # This list contains all .h, .cc, and .mm files in glue except for 148 # This list contains all .h, .cc, and .mm files in glue except for
148 # those in the test subdirectory and those with unittest in in their 149 # those in the test subdirectory and those with unittest in in their
149 # names. 150 # names.
151 '../forms/form_data.cc',
152 '../forms/form_data.h',
153 '../forms/form_data_predictions.cc',
154 '../forms/form_data_predictions.h',
155 '../forms/form_field.cc',
156 '../forms/form_field.h',
157 '../forms/form_field_predictions.cc',
158 '../forms/form_field_predictions.h',
159 '../forms/password_form.cc',
160 '../forms/password_form.h',
161 '../forms/password_form_dom_manager.cc',
162 '../forms/password_form_dom_manager.h',
163 '../forms/webkit_forms_export.h',
150 '../plugins/npapi/carbon_plugin_window_tracker_mac.cc', 164 '../plugins/npapi/carbon_plugin_window_tracker_mac.cc',
151 '../plugins/npapi/carbon_plugin_window_tracker_mac.h', 165 '../plugins/npapi/carbon_plugin_window_tracker_mac.h',
152 '../plugins/npapi/coregraphics_private_symbols_mac.h', 166 '../plugins/npapi/coregraphics_private_symbols_mac.h',
153 '../plugins/npapi/default_plugin_shared.h', 167 '../plugins/npapi/default_plugin_shared.h',
154 '../plugins/npapi/gtk_plugin_container.cc', 168 '../plugins/npapi/gtk_plugin_container.cc',
155 '../plugins/npapi/gtk_plugin_container.h', 169 '../plugins/npapi/gtk_plugin_container.h',
156 '../plugins/npapi/gtk_plugin_container_manager.cc', 170 '../plugins/npapi/gtk_plugin_container_manager.cc',
157 '../plugins/npapi/gtk_plugin_container_manager.h', 171 '../plugins/npapi/gtk_plugin_container_manager.h',
158 '../plugins/npapi/plugin_constants_win.cc', 172 '../plugins/npapi/plugin_constants_win.cc',
159 '../plugins/npapi/plugin_constants_win.h', 173 '../plugins/npapi/plugin_constants_win.h',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 'context_menu.cc', 350 'context_menu.cc',
337 'context_menu.h', 351 'context_menu.h',
338 'cpp_binding_example.cc', 352 'cpp_binding_example.cc',
339 'cpp_binding_example.h', 353 'cpp_binding_example.h',
340 'cpp_bound_class.cc', 354 'cpp_bound_class.cc',
341 'cpp_bound_class.h', 355 'cpp_bound_class.h',
342 'cpp_variant.cc', 356 'cpp_variant.cc',
343 'cpp_variant.h', 357 'cpp_variant.h',
344 'dom_operations.cc', 358 'dom_operations.cc',
345 'dom_operations.h', 359 'dom_operations.h',
346 'form_data.cc',
347 'form_data.h',
348 'form_data_predictions.cc',
349 'form_data_predictions.h',
350 'form_field.cc',
351 'form_field.h',
352 'form_field_predictions.cc',
353 'form_field_predictions.h',
354 'ftp_directory_listing_response_delegate.cc', 360 'ftp_directory_listing_response_delegate.cc',
355 'ftp_directory_listing_response_delegate.h', 361 'ftp_directory_listing_response_delegate.h',
356 'gl_bindings_skia_cmd_buffer.cc', 362 'gl_bindings_skia_cmd_buffer.cc',
357 'gl_bindings_skia_cmd_buffer.h', 363 'gl_bindings_skia_cmd_buffer.h',
358 'glue_serialize.cc', 364 'glue_serialize.cc',
359 'glue_serialize.h', 365 'glue_serialize.h',
360 'idb_bindings.cc', 366 'idb_bindings.cc',
361 'idb_bindings.h', 367 'idb_bindings.h',
362 'image_decoder.cc', 368 'image_decoder.cc',
363 'image_decoder.h', 369 'image_decoder.h',
364 'image_resource_fetcher.cc', 370 'image_resource_fetcher.cc',
365 'image_resource_fetcher.h', 371 'image_resource_fetcher.h',
366 'multipart_response_delegate.cc', 372 'multipart_response_delegate.cc',
367 'multipart_response_delegate.h', 373 'multipart_response_delegate.h',
368 'npruntime_util.cc', 374 'npruntime_util.cc',
369 'npruntime_util.h', 375 'npruntime_util.h',
370 'p2p_transport.cc', 376 'p2p_transport.cc',
371 'p2p_transport.h', 377 'p2p_transport.h',
372 'password_form.cc',
373 'password_form.h',
374 'password_form_dom_manager.cc',
375 'password_form_dom_manager.h',
376 'resource_fetcher.cc', 378 'resource_fetcher.cc',
377 'resource_fetcher.h', 379 'resource_fetcher.h',
378 'resource_loader_bridge.cc', 380 'resource_loader_bridge.cc',
379 'resource_loader_bridge.h', 381 'resource_loader_bridge.h',
380 'resource_type.cc', 382 'resource_type.cc',
381 'resource_type.h', 383 'resource_type.h',
382 'scoped_clipboard_writer_glue.cc', 384 'scoped_clipboard_writer_glue.cc',
383 'scoped_clipboard_writer_glue.h', 385 'scoped_clipboard_writer_glue.h',
384 'simple_webmimeregistry_impl.cc', 386 'simple_webmimeregistry_impl.cc',
385 'simple_webmimeregistry_impl.h', 387 'simple_webmimeregistry_impl.h',
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 }, 556 },
555 'includes': [ '../../build/grit_action.gypi' ], 557 'includes': [ '../../build/grit_action.gypi' ],
556 }, 558 },
557 ], 559 ],
558 'includes': [ '../../build/grit_target.gypi' ], 560 'includes': [ '../../build/grit_target.gypi' ],
559 }, 561 },
560 ], 562 ],
561 }], 563 }],
562 ], 564 ],
563 } 565 }
OLDNEW
« no previous file with comments | « webkit/glue/password_form_dom_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698