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 23 matching lines...) Expand all Loading... |
34 ], | 34 ], |
35 'conditions': [ | 35 'conditions': [ |
36 ['OS == "android"', { | 36 ['OS == "android"', { |
37 'dependencies': [ | 37 'dependencies': [ |
38 'autofill_jni_headers', | 38 'autofill_jni_headers', |
39 ], | 39 ], |
40 }], | 40 }], |
41 ], | 41 ], |
42 'include_dirs': [ | 42 'include_dirs': [ |
43 '..', | 43 '..', |
44 '<(SHARED_INTERMEDIATE_DIR)/autofill' | |
45 ], | 44 ], |
46 'sources': [ | 45 'sources': [ |
47 'autofill/core/browser/android/auxiliary_profile_loader_android.cc', | 46 'autofill/core/browser/android/auxiliary_profile_loader_android.cc', |
48 'autofill/core/browser/android/auxiliary_profile_loader_android.h', | 47 'autofill/core/browser/android/auxiliary_profile_loader_android.h', |
49 'autofill/core/browser/android/auxiliary_profiles_android.cc', | 48 'autofill/core/browser/android/auxiliary_profiles_android.cc', |
50 'autofill/core/browser/android/auxiliary_profiles_android.h', | 49 'autofill/core/browser/android/auxiliary_profiles_android.h', |
51 'autofill/core/browser/android/component_jni_registrar.cc', | 50 'autofill/core/browser/android/component_jni_registrar.cc', |
52 'autofill/core/browser/android/component_jni_registrar.h', | 51 'autofill/core/browser/android/component_jni_registrar.h', |
53 'autofill/core/browser/android/personal_data_manager_android.cc', | 52 'autofill/core/browser/android/personal_data_manager_android.cc', |
54 'autofill/core/common/autofill_constants.cc', | 53 'autofill/core/common/autofill_constants.cc', |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 ], | 420 ], |
422 'variables': { | 421 'variables': { |
423 'jni_gen_package': 'autofill', | 422 'jni_gen_package': 'autofill', |
424 }, | 423 }, |
425 'includes': [ '../build/jni_generator.gypi' ], | 424 'includes': [ '../build/jni_generator.gypi' ], |
426 }, | 425 }, |
427 ], | 426 ], |
428 }], | 427 }], |
429 ], | 428 ], |
430 } | 429 } |
OLD | NEW |