| 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 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "address.cc", | 9 "address.cc", |
| 10 "address.h", | 10 "address.h", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "autofill_assistant.cc", | 176 "autofill_assistant.cc", |
| 177 "autofill_assistant.h", | 177 "autofill_assistant.h", |
| 178 "autofill_credit_card_filling_infobar_delegate_mobile.cc", | 178 "autofill_credit_card_filling_infobar_delegate_mobile.cc", |
| 179 "autofill_credit_card_filling_infobar_delegate_mobile.h", | 179 "autofill_credit_card_filling_infobar_delegate_mobile.h", |
| 180 "autofill_save_card_infobar_delegate_mobile.cc", | 180 "autofill_save_card_infobar_delegate_mobile.cc", |
| 181 "autofill_save_card_infobar_delegate_mobile.h", | 181 "autofill_save_card_infobar_delegate_mobile.h", |
| 182 "autofill_save_card_infobar_mobile.h", | 182 "autofill_save_card_infobar_mobile.h", |
| 183 ] | 183 ] |
| 184 } | 184 } |
| 185 | 185 |
| 186 if (!is_android) { |
| 187 sources += [ |
| 188 "ui/save_card_bubble_controller.h", |
| 189 ] |
| 190 } |
| 191 |
| 186 configs += [ "//build/config:precompiled_headers" ] | 192 configs += [ "//build/config:precompiled_headers" ] |
| 187 | 193 |
| 188 public_deps = [ | 194 public_deps = [ |
| 189 "//components/autofill/core/browser/proto", | 195 "//components/autofill/core/browser/proto", |
| 190 "//components/autofill/core/common", | 196 "//components/autofill/core/common", |
| 191 "//components/resources", | 197 "//components/resources", |
| 192 ] | 198 ] |
| 193 deps = [ | 199 deps = [ |
| 194 "//base", | 200 "//base", |
| 195 "//base:i18n", | 201 "//base:i18n", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "test_autofill_clock.cc", | 251 "test_autofill_clock.cc", |
| 246 "test_autofill_clock.h", | 252 "test_autofill_clock.h", |
| 247 "test_autofill_driver.cc", | 253 "test_autofill_driver.cc", |
| 248 "test_autofill_driver.h", | 254 "test_autofill_driver.h", |
| 249 "test_autofill_external_delegate.cc", | 255 "test_autofill_external_delegate.cc", |
| 250 "test_autofill_external_delegate.h", | 256 "test_autofill_external_delegate.h", |
| 251 "test_personal_data_manager.cc", | 257 "test_personal_data_manager.cc", |
| 252 "test_personal_data_manager.h", | 258 "test_personal_data_manager.h", |
| 253 ] | 259 ] |
| 254 | 260 |
| 261 if (!is_android) { |
| 262 sources += [ |
| 263 "ui/mock_save_card_bubble_controller.cc", |
| 264 "ui/mock_save_card_bubble_controller.h", |
| 265 ] |
| 266 } |
| 267 |
| 255 public_deps = [ | 268 public_deps = [ |
| 256 ":browser", | 269 ":browser", |
| 257 ] | 270 ] |
| 258 | 271 |
| 259 deps = [ | 272 deps = [ |
| 260 "//base", | 273 "//base", |
| 261 "//base/test:test_support", | 274 "//base/test:test_support", |
| 262 "//components/autofill/core/browser", | 275 "//components/autofill/core/browser", |
| 263 "//components/autofill/core/common", | 276 "//components/autofill/core/common", |
| 264 "//components/os_crypt", | 277 "//components/os_crypt", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 "//net:test_support", | 402 "//net:test_support", |
| 390 "//sql", | 403 "//sql", |
| 391 "//testing/gmock", | 404 "//testing/gmock", |
| 392 "//testing/gtest", | 405 "//testing/gtest", |
| 393 "//third_party/libaddressinput:util", | 406 "//third_party/libaddressinput:util", |
| 394 "//third_party/libphonenumber", | 407 "//third_party/libphonenumber", |
| 395 "//ui/base", | 408 "//ui/base", |
| 396 "//url", | 409 "//url", |
| 397 ] | 410 ] |
| 398 } | 411 } |
| OLD | NEW |