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("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 | 8 |
9 libaddressinput_util_files = [ | 9 libaddressinput_util_files = [ |
10 "src/cpp/src/address_data.cc", | 10 "src/cpp/src/address_data.cc", |
(...skipping 30 matching lines...) Expand all Loading... |
41 foreach(locale, locales_with_fake_bidi) { | 41 foreach(locale, locales_with_fake_bidi) { |
42 outputs += [ "address_input_strings_$locale.pak" ] | 42 outputs += [ "address_input_strings_$locale.pak" ] |
43 } | 43 } |
44 | 44 |
45 configs = [ ":no-newline-eof-warning" ] | 45 configs = [ ":no-newline-eof-warning" ] |
46 } | 46 } |
47 | 47 |
48 config("libaddressinput_config") { | 48 config("libaddressinput_config") { |
49 defines = [ | 49 defines = [ |
50 "I18N_ADDRESSINPUT_USE_BASICTYPES_OVERRIDE=1", | 50 "I18N_ADDRESSINPUT_USE_BASICTYPES_OVERRIDE=1", |
51 "I18N_ADDRESS_VALIDATION_DATA_URL=\"https://i18napis.appspot.com/ssl-aggrega
te-address/\"", | 51 "I18N_ADDRESS_VALIDATION_DATA_URL=\"https://chromium-i18n.appspot.com/ssl-ag
gregate-address/\"", |
52 ] | 52 ] |
53 include_dirs = [ | 53 include_dirs = [ |
54 "src/cpp/include", | 54 "src/cpp/include", |
55 "chromium/override", | 55 "chromium/override", |
56 ] | 56 ] |
57 } | 57 } |
58 | 58 |
59 # This target provides basic functionality which is cooked into the build. | 59 # This target provides basic functionality which is cooked into the build. |
60 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput_u
til | 60 # GYP version: third_party/libaddressinput/libaddressinput.gyp:libaddressinput_u
til |
61 static_library("util") { | 61 static_library("util") { |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 deps = [ | 156 deps = [ |
157 ":libaddressinput", | 157 ":libaddressinput", |
158 ":strings", | 158 ":strings", |
159 "//base/test:run_all_unittests", | 159 "//base/test:run_all_unittests", |
160 "//components/prefs", | 160 "//components/prefs", |
161 "//net:test_support", | 161 "//net:test_support", |
162 "//testing/gtest", | 162 "//testing/gtest", |
163 ] | 163 ] |
164 } | 164 } |
165 } | 165 } |
OLD | NEW |