| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 deps = [ | 129 deps = [ |
| 130 ":strings", | 130 ":strings", |
| 131 "//base", | 131 "//base", |
| 132 "//base:i18n", | 132 "//base:i18n", |
| 133 "//third_party/icu", | 133 "//third_party/icu", |
| 134 "//third_party/re2", | 134 "//third_party/re2", |
| 135 ] | 135 ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 if (!is_android) { | 138 if (!is_android || use_aura) { |
| 139 # The list of files in libaddressinput.gypi. | 139 # The list of files in libaddressinput.gypi. |
| 140 gypi_values = exec_script("//build/gypi_to_gn.py", | 140 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 141 [ rebase_path("src/cpp/libaddressinput.gypi") ], | 141 [ rebase_path("src/cpp/libaddressinput.gypi") ], |
| 142 "scope", | 142 "scope", |
| 143 [ "src/cpp/libaddressinput.gypi" ]) | 143 [ "src/cpp/libaddressinput.gypi" ]) |
| 144 | 144 |
| 145 # This target provides more complicated functionality like pinging servers | 145 # This target provides more complicated functionality like pinging servers |
| 146 # for validation rules. | 146 # for validation rules. |
| 147 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput | 147 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput |
| 148 static_library("libaddressinput") { | 148 static_library("libaddressinput") { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 deps = [ | 198 deps = [ |
| 199 ":libaddressinput", | 199 ":libaddressinput", |
| 200 ":strings", | 200 ":strings", |
| 201 "//base:prefs", | 201 "//base:prefs", |
| 202 "//base/test:run_all_unittests", | 202 "//base/test:run_all_unittests", |
| 203 "//net:test_support", | 203 "//net:test_support", |
| 204 "//testing/gtest", | 204 "//testing/gtest", |
| 205 ] | 205 ] |
| 206 } | 206 } |
| 207 } | 207 } |
| OLD | NEW |