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

Side by Side Diff: chrome/chrome.gyp

Issue 355003: Implement FormStructure and an initial method, EncodeUploadRequest. This als... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 | « chrome/browser/webdata/web_database_unittest.cc ('k') | chrome/common/render_messages.h » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 'chrome_strings', 773 'chrome_strings',
774 'theme_resources', 774 'theme_resources',
775 '../app/app.gyp:app_resources', 775 '../app/app.gyp:app_resources',
776 '../app/app.gyp:app_strings', 776 '../app/app.gyp:app_strings',
777 '../media/media.gyp:media', 777 '../media/media.gyp:media',
778 '../printing/printing.gyp:printing', 778 '../printing/printing.gyp:printing',
779 '../skia/skia.gyp:skia', 779 '../skia/skia.gyp:skia',
780 '../third_party/bzip2/bzip2.gyp:bzip2', 780 '../third_party/bzip2/bzip2.gyp:bzip2',
781 '../third_party/icu/icu.gyp:icui18n', 781 '../third_party/icu/icu.gyp:icui18n',
782 '../third_party/icu/icu.gyp:icuuc', 782 '../third_party/icu/icu.gyp:icuuc',
783 '../third_party/libjingle/libjingle.gyp:libjingle',
783 '../third_party/libxml/libxml.gyp:libxml', 784 '../third_party/libxml/libxml.gyp:libxml',
784 '../third_party/npapi/npapi.gyp:npapi', 785 '../third_party/npapi/npapi.gyp:npapi',
785 '../third_party/hunspell/hunspell.gyp:hunspell', 786 '../third_party/hunspell/hunspell.gyp:hunspell',
786 '../webkit/webkit.gyp:database', 787 '../webkit/webkit.gyp:database',
787 '../webkit/webkit.gyp:glue', 788 '../webkit/webkit.gyp:glue',
788 ], 789 ],
789 'include_dirs': [ 790 'include_dirs': [
790 '..', 791 '..',
791 '<(INTERMEDIATE_DIR)', 792 '<(INTERMEDIATE_DIR)',
792 ], 793 ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 'browser/autocomplete/autocomplete_popup_view_mac.h', 830 'browser/autocomplete/autocomplete_popup_view_mac.h',
830 'browser/autocomplete/autocomplete_popup_view_mac.mm', 831 'browser/autocomplete/autocomplete_popup_view_mac.mm',
831 'browser/autocomplete/history_contents_provider.cc', 832 'browser/autocomplete/history_contents_provider.cc',
832 'browser/autocomplete/history_contents_provider.h', 833 'browser/autocomplete/history_contents_provider.h',
833 'browser/autocomplete/history_url_provider.cc', 834 'browser/autocomplete/history_url_provider.cc',
834 'browser/autocomplete/history_url_provider.h', 835 'browser/autocomplete/history_url_provider.h',
835 'browser/autocomplete/keyword_provider.cc', 836 'browser/autocomplete/keyword_provider.cc',
836 'browser/autocomplete/keyword_provider.h', 837 'browser/autocomplete/keyword_provider.h',
837 'browser/autocomplete/search_provider.cc', 838 'browser/autocomplete/search_provider.cc',
838 'browser/autocomplete/search_provider.h', 839 'browser/autocomplete/search_provider.h',
840 'browser/autofill/autofill_field.cc',
841 'browser/autofill/autofill_field.h',
839 'browser/autofill/autofill_infobar_delegate.cc', 842 'browser/autofill/autofill_infobar_delegate.cc',
840 'browser/autofill/autofill_infobar_delegate.h', 843 'browser/autofill/autofill_infobar_delegate.h',
841 'browser/autofill/autofill_manager.cc', 844 'browser/autofill/autofill_manager.cc',
842 'browser/autofill/autofill_manager.h', 845 'browser/autofill/autofill_manager.h',
846 'browser/autofill/field_types.h',
847 'browser/autofill/form_structure.cc',
848 'browser/autofill/form_structure.h',
843 'browser/automation/automation_autocomplete_edit_tracker.h', 849 'browser/automation/automation_autocomplete_edit_tracker.h',
844 'browser/automation/automation_browser_tracker.h', 850 'browser/automation/automation_browser_tracker.h',
845 'browser/automation/extension_automation_constants.h', 851 'browser/automation/extension_automation_constants.h',
846 'browser/automation/extension_automation_constants.cc', 852 'browser/automation/extension_automation_constants.cc',
847 'browser/automation/automation_extension_function.h', 853 'browser/automation/automation_extension_function.h',
848 'browser/automation/automation_extension_function.cc', 854 'browser/automation/automation_extension_function.cc',
849 'browser/automation/automation_profile_impl.cc', 855 'browser/automation/automation_profile_impl.cc',
850 'browser/automation/automation_profile_impl.h', 856 'browser/automation/automation_profile_impl.h',
851 'browser/automation/automation_provider_gtk.cc', 857 'browser/automation/automation_provider_gtk.cc',
852 'browser/automation/automation_provider_mac.mm', 858 'browser/automation/automation_provider_mac.mm',
(...skipping 6075 matching lines...) Expand 10 before | Expand all | Expand 10 after
6928 ] 6934 ]
6929 }], 6935 }],
6930 ], # 'conditions' 6936 ], # 'conditions'
6931 } 6937 }
6932 6938
6933 # Local Variables: 6939 # Local Variables:
6934 # tab-width:2 6940 # tab-width:2
6935 # indent-tabs-mode:nil 6941 # indent-tabs-mode:nil
6936 # End: 6942 # End:
6937 # vim: set expandtab tabstop=2 shiftwidth=2: 6943 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/webdata/web_database_unittest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698