| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 # GYP version: components/autofill.gyp:autofill_core_browser | 7 # GYP version: components/autofill.gyp:autofill_core_browser |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "address.cc", | 10 "address.cc", |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "//components/autofill/core/browser/proto", | 204 "//components/autofill/core/browser/proto", |
| 205 ] | 205 ] |
| 206 | 206 |
| 207 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 207 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 208 | 208 |
| 209 if (is_mac) { | 209 if (is_mac) { |
| 210 libs = [ "AddressBook.framework" ] | 210 libs = [ "AddressBook.framework" ] |
| 211 } | 211 } |
| 212 } | 212 } |
| 213 | 213 |
| 214 source_set("test_support") { | 214 static_library("test_support") { |
| 215 testonly = true | 215 testonly = true |
| 216 sources = [ | 216 sources = [ |
| 217 "autofill_test_utils.cc", | 217 "autofill_test_utils.cc", |
| 218 "autofill_test_utils.h", | 218 "autofill_test_utils.h", |
| 219 "data_driven_test.cc", | 219 "data_driven_test.cc", |
| 220 "data_driven_test.h", | 220 "data_driven_test.h", |
| 221 "suggestion_test_helpers.h", | 221 "suggestion_test_helpers.h", |
| 222 "test_autofill_client.cc", | 222 "test_autofill_client.cc", |
| 223 "test_autofill_client.h", | 223 "test_autofill_client.h", |
| 224 "test_autofill_driver.cc", | 224 "test_autofill_driver.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//sync", | 351 "//sync", |
| 352 "//sync:test_support_sync_api", | 352 "//sync:test_support_sync_api", |
| 353 "//testing/gmock", | 353 "//testing/gmock", |
| 354 "//testing/gtest", | 354 "//testing/gtest", |
| 355 "//third_party/libaddressinput:util", | 355 "//third_party/libaddressinput:util", |
| 356 "//third_party/libphonenumber", | 356 "//third_party/libphonenumber", |
| 357 "//ui/base", | 357 "//ui/base", |
| 358 "//url", | 358 "//url", |
| 359 ] | 359 ] |
| 360 } | 360 } |
| OLD | NEW |