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

Issue 15979002: Making credit card number un-editable in Wallet mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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
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 17 matching lines...) Expand all
28 'type': 'static_library', 28 'type': 'static_library',
29 'sources': [ 29 'sources': [
30 'autofill/browser/risk/proto/fingerprint.proto', 30 'autofill/browser/risk/proto/fingerprint.proto',
31 ], 31 ],
32 'variables': { 32 'variables': {
33 'proto_in_dir': 'autofill/browser/risk/proto', 33 'proto_in_dir': 'autofill/browser/risk/proto',
34 'proto_out_dir': 'components/autofill/browser/risk/proto', 34 'proto_out_dir': 'components/autofill/browser/risk/proto',
35 }, 35 },
36 'includes': [ '../build/protoc.gypi' ] 36 'includes': [ '../build/protoc.gypi' ]
37 }, 37 },
38 {
39 'target_name': 'autofill_test',
Evan Stade 2013/05/25 00:41:19 autofill_test_util?
Dan Beam 2013/05/25 02:36:57 Done.
40 'type': 'static_library',
41 'sources': [
42 'autofill/browser/wallet/wallet_test_util.cc',
43 'autofill/browser/wallet/wallet_test_util.h',
44 ],
45 'include_dirs': [ '..' ],
46 },
38 ], 47 ],
39 'conditions': [ 48 'conditions': [
40 ['OS != "ios"', { 49 ['OS != "ios"', {
41 'targets': [ 50 'targets': [
42 { 51 {
43 'target_name': 'autofill_common', 52 'target_name': 'autofill_common',
44 'type': 'static_library', 53 'type': 'static_library',
45 'dependencies': [ 54 'dependencies': [
46 '../base/base.gyp:base', 55 '../base/base.gyp:base',
47 '../build/temp_gyp/googleurl.gyp:googleurl', 56 '../build/temp_gyp/googleurl.gyp:googleurl',
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 ], 326 ],
318 'variables': { 327 'variables': {
319 'jni_gen_package': 'autofill', 328 'jni_gen_package': 'autofill',
320 }, 329 },
321 'includes': [ '../build/jni_generator.gypi' ], 330 'includes': [ '../build/jni_generator.gypi' ],
322 }, 331 },
323 ], 332 ],
324 }], 333 }],
325 ], 334 ],
326 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698