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

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

Issue 461323005: Create build target for libaddressinput android widget (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adjust aosp whitelist Created 6 years, 4 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 | « android_webview/buildbot/deps_whitelist.py ('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 'target_name': 'android_addressinput_widget',
169 'type': 'none',
170 'variables': {
171 'java_in_dir': 'src/java',
172 'never_lint': 1,
173 'res_v14_verify_only': 1,
174 'has_java_resources': 1,
175 'R_package': 'com.android.i18n.addressinput',
176 'R_package_relpath': 'com/android/i18n/addressinput',
177 },
178 'includes': [
179 '../../build/java.gypi',
180 ],
181 },
182 ],
183 },],
184 ],
164 } 185 }
OLDNEW
« no previous file with comments | « android_webview/buildbot/deps_whitelist.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698