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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 ], | 223 ], |
224 'variables': { | 224 'variables': { |
225 'proto_in_dir': 'autofill/content/browser/risk/proto', | 225 'proto_in_dir': 'autofill/content/browser/risk/proto', |
226 'proto_out_dir': 'components/autofill/content/browser/risk/proto', | 226 'proto_out_dir': 'components/autofill/content/browser/risk/proto', |
227 }, | 227 }, |
228 'includes': [ '../build/protoc.gypi' ] | 228 'includes': [ '../build/protoc.gypi' ] |
229 }, | 229 }, |
230 { | 230 { |
231 'target_name': 'autofill_content_test_util', | 231 'target_name': 'autofill_content_test_util', |
232 'type': 'static_library', | 232 'type': 'static_library', |
| 233 'dependencies': [ |
| 234 '../testing/gmock.gyp:gmock', |
| 235 ], |
233 'sources': [ | 236 'sources': [ |
| 237 'autofill/content/browser/wallet/mock_wallet_client.cc', |
| 238 'autofill/content/browser/wallet/mock_wallet_client.h', |
234 'autofill/content/browser/wallet/wallet_test_util.cc', | 239 'autofill/content/browser/wallet/wallet_test_util.cc', |
235 'autofill/content/browser/wallet/wallet_test_util.h', | 240 'autofill/content/browser/wallet/wallet_test_util.h', |
236 ], | 241 ], |
237 'include_dirs': [ '..' ], | 242 'include_dirs': [ '..' ], |
238 }, | 243 }, |
239 { | 244 { |
240 'target_name': 'autofill_content_browser', | 245 'target_name': 'autofill_content_browser', |
241 'type': 'static_library', | 246 'type': 'static_library', |
242 'include_dirs': [ | 247 'include_dirs': [ |
243 '..', | 248 '..', |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 ], | 376 ], |
372 'variables': { | 377 'variables': { |
373 'jni_gen_package': 'autofill', | 378 'jni_gen_package': 'autofill', |
374 }, | 379 }, |
375 'includes': [ '../build/jni_generator.gypi' ], | 380 'includes': [ '../build/jni_generator.gypi' ], |
376 }, | 381 }, |
377 ], | 382 ], |
378 }], | 383 }], |
379 ], | 384 ], |
380 } | 385 } |
OLD | NEW |