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 '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 } |
OLD | NEW |