| 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 config("no-newline-eof-warning") { | 9 config("no-newline-eof-warning") { |
| 10 if (is_clang) { | 10 if (is_clang) { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//third_party/icu", | 79 "//third_party/icu", |
| 80 "//third_party/re2", | 80 "//third_party/re2", |
| 81 ] | 81 ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 # This target provides more complicated functionality like pinging servers | 84 # This target provides more complicated functionality like pinging servers |
| 85 # for validation rules. | 85 # for validation rules. |
| 86 static_library("libaddressinput") { | 86 static_library("libaddressinput") { |
| 87 sources = [ | 87 sources = [ |
| 88 "chromium/chrome_address_validator.cc", | 88 "chromium/chrome_address_validator.cc", |
| 89 "chromium/chrome_address_validator.h", |
| 89 "chromium/chrome_metadata_source.cc", | 90 "chromium/chrome_metadata_source.cc", |
| 91 "chromium/chrome_metadata_source.h", |
| 90 "chromium/chrome_storage_impl.cc", | 92 "chromium/chrome_storage_impl.cc", |
| 93 "chromium/chrome_storage_impl.h", |
| 91 "chromium/fallback_data_store.cc", | 94 "chromium/fallback_data_store.cc", |
| 95 "chromium/fallback_data_store.h", |
| 92 "chromium/input_suggester.cc", | 96 "chromium/input_suggester.cc", |
| 97 "chromium/input_suggester.h", |
| 93 "chromium/string_compare.cc", | 98 "chromium/string_compare.cc", |
| 94 "chromium/trie.cc", | 99 "chromium/trie.cc", |
| 100 "chromium/trie.h", |
| 95 "src/cpp/src/address_input_helper.cc", | 101 "src/cpp/src/address_input_helper.cc", |
| 96 "src/cpp/src/address_normalizer.cc", | 102 "src/cpp/src/address_normalizer.cc", |
| 97 "src/cpp/src/address_problem.cc", | 103 "src/cpp/src/address_problem.cc", |
| 98 "src/cpp/src/address_validator.cc", | 104 "src/cpp/src/address_validator.cc", |
| 99 "src/cpp/src/null_storage.cc", | 105 "src/cpp/src/null_storage.cc", |
| 100 "src/cpp/src/ondemand_supplier.cc", | 106 "src/cpp/src/ondemand_supplier.cc", |
| 101 "src/cpp/src/ondemand_supply_task.cc", | 107 "src/cpp/src/ondemand_supply_task.cc", |
| 102 "src/cpp/src/post_box_matchers.cc", | 108 "src/cpp/src/post_box_matchers.cc", |
| 103 "src/cpp/src/preload_supplier.cc", | 109 "src/cpp/src/preload_supplier.cc", |
| 104 "src/cpp/src/region_data.cc", | 110 "src/cpp/src/region_data.cc", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 } | 156 } |
| 151 | 157 |
| 152 test("libaddressinput_unittests") { | 158 test("libaddressinput_unittests") { |
| 153 sources = [ | 159 sources = [ |
| 154 "chromium/addressinput_util_unittest.cc", | 160 "chromium/addressinput_util_unittest.cc", |
| 155 "chromium/chrome_address_validator_unittest.cc", | 161 "chromium/chrome_address_validator_unittest.cc", |
| 156 "chromium/chrome_metadata_source_unittest.cc", | 162 "chromium/chrome_metadata_source_unittest.cc", |
| 157 "chromium/chrome_storage_impl_unittest.cc", | 163 "chromium/chrome_storage_impl_unittest.cc", |
| 158 "chromium/fallback_data_store_unittest.cc", | 164 "chromium/fallback_data_store_unittest.cc", |
| 159 "chromium/storage_test_runner.cc", | 165 "chromium/storage_test_runner.cc", |
| 166 "chromium/storage_test_runner.h", |
| 160 "chromium/string_compare_unittest.cc", | 167 "chromium/string_compare_unittest.cc", |
| 161 "chromium/trie_unittest.cc", | 168 "chromium/trie_unittest.cc", |
| 162 "src/cpp/test/address_data_test.cc", | 169 "src/cpp/test/address_data_test.cc", |
| 163 "src/cpp/test/address_field_test.cc", | 170 "src/cpp/test/address_field_test.cc", |
| 164 "src/cpp/test/address_field_util_test.cc", | 171 "src/cpp/test/address_field_util_test.cc", |
| 165 "src/cpp/test/address_formatter_test.cc", | 172 "src/cpp/test/address_formatter_test.cc", |
| 166 "src/cpp/test/address_input_helper_test.cc", | 173 "src/cpp/test/address_input_helper_test.cc", |
| 167 "src/cpp/test/address_metadata_test.cc", | 174 "src/cpp/test/address_metadata_test.cc", |
| 168 "src/cpp/test/address_normalizer_test.cc", | 175 "src/cpp/test/address_normalizer_test.cc", |
| 169 "src/cpp/test/address_problem_test.cc", | 176 "src/cpp/test/address_problem_test.cc", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 deps = [ | 218 deps = [ |
| 212 ":libaddressinput", | 219 ":libaddressinput", |
| 213 ":strings", | 220 ":strings", |
| 214 ":test_support", | 221 ":test_support", |
| 215 "//base/test:run_all_unittests", | 222 "//base/test:run_all_unittests", |
| 216 "//components/prefs", | 223 "//components/prefs", |
| 217 "//net:test_support", | 224 "//net:test_support", |
| 218 "//testing/gtest", | 225 "//testing/gtest", |
| 219 ] | 226 ] |
| 220 } | 227 } |
| OLD | NEW |