Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: third_party/libaddressinput/libaddressinput.gyp

Issue 867043003: [android] Remove libaddressinput Java widget. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libaddressinput/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « third_party/libaddressinput/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698