| 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 static_library("browser") { | 8 static_library("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "address.cc", | 10 "address.cc", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "autofill_credit_card_filling_infobar_delegate_mobile.cc", | 159 "autofill_credit_card_filling_infobar_delegate_mobile.cc", |
| 160 "autofill_credit_card_filling_infobar_delegate_mobile.h", | 160 "autofill_credit_card_filling_infobar_delegate_mobile.h", |
| 161 "autofill_save_card_infobar_delegate_mobile.cc", | 161 "autofill_save_card_infobar_delegate_mobile.cc", |
| 162 "autofill_save_card_infobar_delegate_mobile.h", | 162 "autofill_save_card_infobar_delegate_mobile.h", |
| 163 "autofill_save_card_infobar_mobile.h", | 163 "autofill_save_card_infobar_mobile.h", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| 166 | 166 |
| 167 configs += [ "//build/config:precompiled_headers" ] | 167 configs += [ "//build/config:precompiled_headers" ] |
| 168 | 168 |
| 169 public_deps = [ |
| 170 "//components/autofill/core/browser/proto", |
| 171 "//components/autofill/core/common", |
| 172 ] |
| 169 deps = [ | 173 deps = [ |
| 170 "//base", | 174 "//base", |
| 171 "//base:i18n", | 175 "//base:i18n", |
| 172 "//components/autofill/core/common", | |
| 173 "//components/data_use_measurement/core", | 176 "//components/data_use_measurement/core", |
| 174 "//components/infobars/core", | 177 "//components/infobars/core", |
| 175 "//components/keyed_service/core", | 178 "//components/keyed_service/core", |
| 176 "//components/os_crypt", | 179 "//components/os_crypt", |
| 177 "//components/pref_registry", | 180 "//components/pref_registry", |
| 178 "//components/prefs", | 181 "//components/prefs", |
| 179 "//components/rappor", | 182 "//components/rappor", |
| 180 "//components/resources", | 183 "//components/resources", |
| 181 "//components/signin/core/browser", | 184 "//components/signin/core/browser", |
| 182 "//components/signin/core/common", | 185 "//components/signin/core/common", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 194 "//third_party/libaddressinput:util", | 197 "//third_party/libaddressinput:util", |
| 195 "//third_party/libphonenumber", | 198 "//third_party/libphonenumber", |
| 196 "//third_party/re2", | 199 "//third_party/re2", |
| 197 "//ui/base", | 200 "//ui/base", |
| 198 "//ui/gfx", | 201 "//ui/gfx", |
| 199 "//ui/gfx/geometry", | 202 "//ui/gfx/geometry", |
| 200 "//ui/gfx/range", | 203 "//ui/gfx/range", |
| 201 "//url", | 204 "//url", |
| 202 ] | 205 ] |
| 203 | 206 |
| 204 public_deps = [ | |
| 205 "//components/autofill/core/browser/proto", | |
| 206 ] | |
| 207 | |
| 208 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 207 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 209 | 208 |
| 210 if (is_mac) { | 209 if (is_mac) { |
| 211 libs = [ "AddressBook.framework" ] | 210 libs = [ "AddressBook.framework" ] |
| 212 } | 211 } |
| 213 } | 212 } |
| 214 | 213 |
| 215 static_library("test_support") { | 214 static_library("test_support") { |
| 216 testonly = true | 215 testonly = true |
| 217 sources = [ | 216 sources = [ |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "//net:test_support", | 354 "//net:test_support", |
| 356 "//sql", | 355 "//sql", |
| 357 "//testing/gmock", | 356 "//testing/gmock", |
| 358 "//testing/gtest", | 357 "//testing/gtest", |
| 359 "//third_party/libaddressinput:util", | 358 "//third_party/libaddressinput:util", |
| 360 "//third_party/libphonenumber", | 359 "//third_party/libphonenumber", |
| 361 "//ui/base", | 360 "//ui/base", |
| 362 "//url", | 361 "//url", |
| 363 ] | 362 ] |
| 364 } | 363 } |
| OLD | NEW |