OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'includes': ['src/cpp/libaddressinput.gypi'], | 5 'includes': ['src/cpp/libaddressinput.gypi'], |
6 'variables': { | 6 'variables': { |
7 'libaddressinput_test_data_dir%': 'src/third_party/libaddressinput/src/testd
ata', | 7 'libaddressinput_test_data_dir%': 'src/third_party/libaddressinput/src/testd
ata', |
8 'libaddressinput_util_files': [ | 8 'libaddressinput_util_files': [ |
9 'src/cpp/src/address_data.cc', | 9 'src/cpp/src/address_data.cc', |
10 'src/cpp/src/address_field.cc', | 10 'src/cpp/src/address_field.cc', |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 'dependencies': [ | 154 'dependencies': [ |
155 '../../base/base.gyp:base_prefs', | 155 '../../base/base.gyp:base_prefs', |
156 '../../base/base.gyp:run_all_unittests', | 156 '../../base/base.gyp:run_all_unittests', |
157 '../../net/net.gyp:net_test_support', | 157 '../../net/net.gyp:net_test_support', |
158 '../../testing/gtest.gyp:gtest', | 158 '../../testing/gtest.gyp:gtest', |
159 'libaddressinput', | 159 'libaddressinput', |
160 'libaddressinput_util', | 160 'libaddressinput_util', |
161 ], | 161 ], |
162 }, | 162 }, |
163 ], | 163 ], |
164 'conditions': [ | |
165 ['OS=="android"', { | |
166 'targets': [ | |
167 { | |
168 # GN: //third_party/libaddressinput:libaddressinput_android_strings_gr
d | |
169 'target_name': 'libaddressinput_android_strings_grd', | |
170 'type': 'none', | |
171 'android_unmangled_name': 1, | |
172 'variables': { | |
173 'grd_file': '../../chrome/app/address_input_strings_android.grd', | |
174 }, | |
175 'includes': [ | |
176 '../../build/java_strings_grd.gypi', | |
177 ], | |
178 }, | |
179 { | |
180 # GN: //third_party/libaddressinput:android_addressinput_widget_java | |
181 'target_name': 'android_addressinput_widget', | |
182 'type': 'none', | |
183 'variables': { | |
184 'java_in_dir': 'src/java', | |
185 'never_lint': 1, | |
186 'res_v14_verify_only': 1, | |
187 'has_java_resources': 1, | |
188 'R_package': 'com.android.i18n.addressinput', | |
189 'R_package_relpath': 'com/android/i18n/addressinput', | |
190 }, | |
191 'includes': [ | |
192 '../../build/java.gypi', | |
193 ], | |
194 'dependencies': [ | |
195 'libaddressinput_android_strings_grd', | |
196 ], | |
197 }, | |
198 ], | |
199 },], | |
200 ], | |
201 } | 164 } |
OLD | NEW |