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 26 matching lines...) Expand all Loading... |
37 }, | 37 }, |
38 ], | 38 ], |
39 'conditions': [ | 39 'conditions': [ |
40 ['OS != "ios"', { | 40 ['OS != "ios"', { |
41 'targets': [ | 41 'targets': [ |
42 { | 42 { |
43 'target_name': 'autofill_common', | 43 'target_name': 'autofill_common', |
44 'type': 'static_library', | 44 'type': 'static_library', |
45 'dependencies': [ | 45 'dependencies': [ |
46 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
47 '../build/temp_gyp/googleurl.gyp:googleurl', | |
48 '../content/content.gyp:content_common', | 47 '../content/content.gyp:content_common', |
49 '../ipc/ipc.gyp:ipc', | 48 '../ipc/ipc.gyp:ipc', |
50 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 49 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
51 '../ui/ui.gyp:ui', | 50 '../ui/ui.gyp:ui', |
| 51 '../url/url.gyp:url', |
52 ], | 52 ], |
53 'conditions': [ | 53 'conditions': [ |
54 ['OS == "android"', { | 54 ['OS == "android"', { |
55 'dependencies': [ | 55 'dependencies': [ |
56 'autofill_jni_headers', | 56 'autofill_jni_headers', |
57 ], | 57 ], |
58 }], | 58 }], |
59 ], | 59 ], |
60 'include_dirs': [ | 60 'include_dirs': [ |
61 '..', | 61 '..', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 '..', | 101 '..', |
102 ], | 102 ], |
103 'dependencies': [ | 103 'dependencies': [ |
104 'autofill_common', | 104 'autofill_common', |
105 'autofill_regexes', | 105 'autofill_regexes', |
106 'autofill_risk_proto', | 106 'autofill_risk_proto', |
107 'encryptor', | 107 'encryptor', |
108 'webdata_common', | 108 'webdata_common', |
109 '../base/base.gyp:base', | 109 '../base/base.gyp:base', |
110 '../base/base.gyp:base_i18n', | 110 '../base/base.gyp:base_i18n', |
111 '../build/temp_gyp/googleurl.gyp:googleurl', | |
112 '../content/content.gyp:content_browser', | 111 '../content/content.gyp:content_browser', |
113 '../content/content.gyp:content_common', | 112 '../content/content.gyp:content_common', |
114 '../ipc/ipc.gyp:ipc', | 113 '../ipc/ipc.gyp:ipc', |
115 '../skia/skia.gyp:skia', | 114 '../skia/skia.gyp:skia', |
116 '../sql/sql.gyp:sql', | 115 '../sql/sql.gyp:sql', |
117 '../third_party/icu/icu.gyp:icui18n', | 116 '../third_party/icu/icu.gyp:icui18n', |
118 '../third_party/icu/icu.gyp:icuuc', | 117 '../third_party/icu/icu.gyp:icuuc', |
119 '../third_party/libjingle/libjingle.gyp:libjingle', | 118 '../third_party/libjingle/libjingle.gyp:libjingle', |
120 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 119 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
121 '../ui/ui.gyp:ui', | 120 '../ui/ui.gyp:ui', |
| 121 '../url/url.gyp:url', |
122 '../webkit/support/webkit_support.gyp:webkit_resources', | 122 '../webkit/support/webkit_support.gyp:webkit_resources', |
123 | 123 |
124 # For grip/generated_resources.h and grit/chromium_strings.h | 124 # For grip/generated_resources.h and grit/chromium_strings.h |
125 # TODO(kaiwang): Remove this dependency on chrome. | 125 # TODO(kaiwang): Remove this dependency on chrome. |
126 '../chrome/chrome_resources.gyp:chrome_strings', | 126 '../chrome/chrome_resources.gyp:chrome_strings', |
127 ], | 127 ], |
128 'sources': [ | 128 'sources': [ |
129 'autofill/browser/address.cc', | 129 'autofill/browser/address.cc', |
130 'autofill/browser/address.h', | 130 'autofill/browser/address.h', |
131 'autofill/browser/address_field.cc', | 131 'autofill/browser/address_field.cc', |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 ], | 309 ], |
310 'variables': { | 310 'variables': { |
311 'jni_gen_package': 'autofill', | 311 'jni_gen_package': 'autofill', |
312 }, | 312 }, |
313 'includes': [ '../build/jni_generator.gypi' ], | 313 'includes': [ '../build/jni_generator.gypi' ], |
314 }, | 314 }, |
315 ], | 315 ], |
316 }], | 316 }], |
317 ], | 317 ], |
318 } | 318 } |
OLD | NEW |