OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |