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

Unified Diff: components/autofill.gypi

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/chrome_render_view_test.cc ('k') | components/autofill/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill.gypi
diff --git a/components/autofill.gypi b/components/autofill.gypi
index c5d26111f7c9ffdbbf8216803af73e47037bf4c0..2afd3e93520556a422a5fd30026d01ce36cebbbf 100644
--- a/components/autofill.gypi
+++ b/components/autofill.gypi
@@ -3,6 +3,38 @@
# found in the LICENSE file.
{
+ 'targets': [
+ {
+ 'target_name': 'autofill_regexes',
+ 'type': 'none',
+ 'actions': [{
+ 'action_name': 'autofill_regexes',
+ 'inputs': [
+ '<(DEPTH)/build/escape_unicode.py',
+ 'autofill/browser/autofill_regex_constants.cc.utf8',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
+ ],
+ 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
+ '-o', '<(SHARED_INTERMEDIATE_DIR)',
+ 'autofill/browser/autofill_regex_constants.cc.utf8'],
+ }],
+ },
+ {
+ # Protobuf compiler / generate rule for Autofill's risk integration.
+ 'target_name': 'autofill_risk_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'autofill/browser/risk/proto/fingerprint.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'autofill/browser/risk/proto',
+ 'proto_out_dir': 'components/autofill/browser/risk/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ]
+ },
+ ],
'conditions': [
['OS != "ios"', {
'targets': [
« no previous file with comments | « chrome/test/base/chrome_render_view_test.cc ('k') | components/autofill/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698