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: components/autofill.gypi

Issue 261013010: autocomplete: add ability to get full address (hidden behind a flag). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self review Created 6 years, 7 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 | « chrome/browser/ui/autofill/data_model_wrapper.cc ('k') | components/autofill/core/browser/DEPS » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # Private target only used in components/autofill. 8 # Private target only used in components/autofill.
9 'target_name': 'autofill_regexes', 9 'target_name': 'autofill_regexes',
10 'type': 'none', 10 'type': 'none',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'dependencies': [ 90 'dependencies': [
91 '../base/base.gyp:base', 91 '../base/base.gyp:base',
92 '../base/base.gyp:base_i18n', 92 '../base/base.gyp:base_i18n',
93 '../base/base.gyp:base_prefs', 93 '../base/base.gyp:base_prefs',
94 '../google_apis/google_apis.gyp:google_apis', 94 '../google_apis/google_apis.gyp:google_apis',
95 '../skia/skia.gyp:skia', 95 '../skia/skia.gyp:skia',
96 '../sql/sql.gyp:sql', 96 '../sql/sql.gyp:sql',
97 '../third_party/icu/icu.gyp:icui18n', 97 '../third_party/icu/icu.gyp:icui18n',
98 '../third_party/icu/icu.gyp:icuuc', 98 '../third_party/icu/icu.gyp:icuuc',
99 '../third_party/libjingle/libjingle.gyp:libjingle', 99 '../third_party/libjingle/libjingle.gyp:libjingle',
100 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util ',
100 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 101 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
101 '../ui/base/ui_base.gyp:ui_base', 102 '../ui/base/ui_base.gyp:ui_base',
102 '../ui/gfx/gfx.gyp:gfx', 103 '../ui/gfx/gfx.gyp:gfx',
103 '../ui/gfx/gfx.gyp:gfx_geometry', 104 '../ui/gfx/gfx.gyp:gfx_geometry',
104 '../url/url.gyp:url_lib', 105 '../url/url.gyp:url_lib',
105 'autofill_core_common', 106 'autofill_core_common',
106 'autofill_regexes', 107 'autofill_regexes',
107 'components_resources.gyp:components_resources', 108 'components_resources.gyp:components_resources',
108 'components_strings.gyp:components_strings', 109 'components_strings.gyp:components_strings',
109 'os_crypt', 110 'os_crypt',
110 'user_prefs', 111 'user_prefs',
111 'webdata_common', 112 'webdata_common',
112 ], 113 ],
113 'sources': [ 114 'sources': [
114 'autofill/core/browser/address.cc', 115 'autofill/core/browser/address.cc',
115 'autofill/core/browser/address.h', 116 'autofill/core/browser/address.h',
116 'autofill/core/browser/address_field.cc', 117 'autofill/core/browser/address_field.cc',
117 'autofill/core/browser/address_field.h', 118 'autofill/core/browser/address_field.h',
119 'autofill/core/browser/address_i18n.cc',
120 'autofill/core/browser/address_i18n.h',
118 'autofill/core/browser/autocomplete_history_manager.cc', 121 'autofill/core/browser/autocomplete_history_manager.cc',
119 'autofill/core/browser/autocomplete_history_manager.h', 122 'autofill/core/browser/autocomplete_history_manager.h',
120 'autofill/core/browser/autofill-inl.h', 123 'autofill/core/browser/autofill-inl.h',
121 'autofill/core/browser/autofill_country.cc', 124 'autofill/core/browser/autofill_country.cc',
122 'autofill/core/browser/autofill_country.h', 125 'autofill/core/browser/autofill_country.h',
123 'autofill/core/browser/autofill_data_model.cc', 126 'autofill/core/browser/autofill_data_model.cc',
124 'autofill/core/browser/autofill_data_model.h', 127 'autofill/core/browser/autofill_data_model.h',
125 'autofill/core/browser/autofill_download.cc', 128 'autofill/core/browser/autofill_download.cc',
126 'autofill/core/browser/autofill_download.h', 129 'autofill/core/browser/autofill_download.h',
127 'autofill/core/browser/autofill_driver.h', 130 'autofill/core/browser/autofill_driver.h',
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'variables': { 462 'variables': {
460 'jni_gen_package': 'autofill', 463 'jni_gen_package': 'autofill',
461 'jni_generator_ptr_type': 'long', 464 'jni_generator_ptr_type': 'long',
462 }, 465 },
463 'includes': [ '../build/jni_generator.gypi' ], 466 'includes': [ '../build/jni_generator.gypi' ],
464 }, 467 },
465 ], 468 ],
466 }], 469 }],
467 ], 470 ],
468 } 471 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/data_model_wrapper.cc ('k') | components/autofill/core/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698