| 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 # GYP version: components/autofill.gyp:autofill_core_browser | 5 # GYP version: components/autofill.gyp:autofill_core_browser |
| 6 static_library("browser") { | 6 static_library("browser") { |
| 7 sources = [ | 7 sources = [ |
| 8 "address.cc", | 8 "address.cc", |
| 9 "address.h", | 9 "address.h", |
| 10 "address_field.cc", | 10 "address_field.cc", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//third_party/libaddressinput:util", | 145 "//third_party/libaddressinput:util", |
| 146 "//third_party/libphonenumber", | 146 "//third_party/libphonenumber", |
| 147 "//third_party/libjingle", | 147 "//third_party/libjingle", |
| 148 "//ui/base", | 148 "//ui/base", |
| 149 "//ui/gfx", | 149 "//ui/gfx", |
| 150 "//ui/gfx/geometry", | 150 "//ui/gfx/geometry", |
| 151 "//url", | 151 "//url", |
| 152 ] | 152 ] |
| 153 | 153 |
| 154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 155 |
| 156 if (is_mac) { |
| 157 libs = [ "AddressBook.framework" ] |
| 158 } |
| 155 } | 159 } |
| 156 | 160 |
| 157 static_library("test_support") { | 161 static_library("test_support") { |
| 158 testonly = true | 162 testonly = true |
| 159 sources = [ | 163 sources = [ |
| 160 "autofill_test_utils.cc", | 164 "autofill_test_utils.cc", |
| 161 "autofill_test_utils.h", | 165 "autofill_test_utils.h", |
| 162 "data_driven_test.cc", | 166 "data_driven_test.cc", |
| 163 "data_driven_test.h", | 167 "data_driven_test.h", |
| 164 "suggestion_test_helpers.h", | 168 "suggestion_test_helpers.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "//sync", | 246 "//sync", |
| 243 "//sync:test_support_sync_api", | 247 "//sync:test_support_sync_api", |
| 244 "//testing/gmock", | 248 "//testing/gmock", |
| 245 "//testing/gtest", | 249 "//testing/gtest", |
| 246 "//third_party/libphonenumber", | 250 "//third_party/libphonenumber", |
| 247 "//third_party/libjingle", | 251 "//third_party/libjingle", |
| 248 "//ui/base", | 252 "//ui/base", |
| 249 "//url", | 253 "//url", |
| 250 ] | 254 ] |
| 251 } | 255 } |
| OLD | NEW |