| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 configs -= [ "//build/config/compiler:chromium_code" ] | 203 configs -= [ "//build/config/compiler:chromium_code" ] |
| 204 configs += [ "//build/config/compiler:no_chromium_code" ] | 204 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 205 | 205 |
| 206 defines = [ "TEST_DATA_DIR=\"third_party/libaddressinput/src/testdata\"" ] | 206 defines = [ "TEST_DATA_DIR=\"third_party/libaddressinput/src/testdata\"" ] |
| 207 | 207 |
| 208 include_dirs = [ "src/cpp/src" ] | 208 include_dirs = [ "src/cpp/src" ] |
| 209 | 209 |
| 210 deps = [ | 210 deps = [ |
| 211 ":libaddressinput", | 211 ":libaddressinput", |
| 212 ":strings", | 212 ":strings", |
| 213 "//base:prefs", | |
| 214 "//base/test:run_all_unittests", | 213 "//base/test:run_all_unittests", |
| 214 "//components/prefs", |
| 215 "//net:test_support", | 215 "//net:test_support", |
| 216 "//testing/gtest", | 216 "//testing/gtest", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 } | 219 } |
| OLD | NEW |