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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/chrome_render_view_test.cc ('k') | components/autofill/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': [
7 {
8 'target_name': 'autofill_regexes',
9 'type': 'none',
10 'actions': [{
11 'action_name': 'autofill_regexes',
12 'inputs': [
13 '<(DEPTH)/build/escape_unicode.py',
14 'autofill/browser/autofill_regex_constants.cc.utf8',
15 ],
16 'outputs': [
17 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
18 ],
19 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
20 '-o', '<(SHARED_INTERMEDIATE_DIR)',
21 'autofill/browser/autofill_regex_constants.cc.utf8'],
22 }],
23 },
24 {
25 # Protobuf compiler / generate rule for Autofill's risk integration.
26 'target_name': 'autofill_risk_proto',
27 'type': 'static_library',
28 'sources': [
29 'autofill/browser/risk/proto/fingerprint.proto',
30 ],
31 'variables': {
32 'proto_in_dir': 'autofill/browser/risk/proto',
33 'proto_out_dir': 'components/autofill/browser/risk/proto',
34 },
35 'includes': [ '../build/protoc.gypi' ]
36 },
37 ],
6 'conditions': [ 38 'conditions': [
7 ['OS != "ios"', { 39 ['OS != "ios"', {
8 'targets': [ 40 'targets': [
9 { 41 {
10 'target_name': 'autofill_common', 42 'target_name': 'autofill_common',
11 'type': 'static_library', 43 'type': 'static_library',
12 'include_dirs': [ 44 'include_dirs': [
13 '..', 45 '..',
14 ], 46 ],
15 'dependencies': [ 47 'dependencies': [
(...skipping 24 matching lines...) Expand all
40 'autofill/common/password_form_fill_data.cc', 72 'autofill/common/password_form_fill_data.cc',
41 'autofill/common/password_form_fill_data.h', 73 'autofill/common/password_form_fill_data.h',
42 'autofill/common/web_element_descriptor.cc', 74 'autofill/common/web_element_descriptor.cc',
43 'autofill/common/web_element_descriptor.h', 75 'autofill/common/web_element_descriptor.h',
44 ], 76 ],
45 }, 77 },
46 ], 78 ],
47 }], 79 }],
48 ], 80 ],
49 } 81 }
OLDNEW
« 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