| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "autofill_manager.cc", | 43 "autofill_manager.cc", |
| 44 "autofill_manager.h", | 44 "autofill_manager.h", |
| 45 "autofill_manager_test_delegate.h", | 45 "autofill_manager_test_delegate.h", |
| 46 "autofill_metrics.cc", | 46 "autofill_metrics.cc", |
| 47 "autofill_metrics.h", | 47 "autofill_metrics.h", |
| 48 "autofill_popup_delegate.h", | 48 "autofill_popup_delegate.h", |
| 49 "autofill_profile.cc", | 49 "autofill_profile.cc", |
| 50 "autofill_profile.h", | 50 "autofill_profile.h", |
| 51 "autofill_profile_comparator.cc", | 51 "autofill_profile_comparator.cc", |
| 52 "autofill_profile_comparator.h", | 52 "autofill_profile_comparator.h", |
| 53 "autofill_provider.cc", |
| 54 "autofill_provider.h", |
| 53 "autofill_regex_constants.cc", | 55 "autofill_regex_constants.cc", |
| 54 "autofill_regex_constants.h", | 56 "autofill_regex_constants.h", |
| 55 "autofill_scanner.cc", | 57 "autofill_scanner.cc", |
| 56 "autofill_scanner.h", | 58 "autofill_scanner.h", |
| 57 "autofill_sync_constants.cc", | 59 "autofill_sync_constants.cc", |
| 58 "autofill_sync_constants.h", | 60 "autofill_sync_constants.h", |
| 59 "autofill_type.cc", | 61 "autofill_type.cc", |
| 60 "autofill_type.h", | 62 "autofill_type.h", |
| 61 "autofill_wallet_data_type_controller.cc", | 63 "autofill_wallet_data_type_controller.cc", |
| 62 "autofill_wallet_data_type_controller.h", | 64 "autofill_wallet_data_type_controller.h", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "autofill_assistant.h", | 179 "autofill_assistant.h", |
| 178 "autofill_credit_card_filling_infobar_delegate_mobile.cc", | 180 "autofill_credit_card_filling_infobar_delegate_mobile.cc", |
| 179 "autofill_credit_card_filling_infobar_delegate_mobile.h", | 181 "autofill_credit_card_filling_infobar_delegate_mobile.h", |
| 180 "autofill_save_card_infobar_delegate_mobile.cc", | 182 "autofill_save_card_infobar_delegate_mobile.cc", |
| 181 "autofill_save_card_infobar_delegate_mobile.h", | 183 "autofill_save_card_infobar_delegate_mobile.h", |
| 182 "autofill_save_card_infobar_mobile.h", | 184 "autofill_save_card_infobar_mobile.h", |
| 183 ] | 185 ] |
| 184 } | 186 } |
| 185 | 187 |
| 186 if (!is_android) { | 188 if (!is_android) { |
| 187 sources += [ | 189 sources += [ "ui/save_card_bubble_controller.h" ] |
| 188 "ui/save_card_bubble_controller.h", | |
| 189 ] | |
| 190 } | 190 } |
| 191 | 191 |
| 192 configs += [ "//build/config:precompiled_headers" ] | 192 configs += [ "//build/config:precompiled_headers" ] |
| 193 | 193 |
| 194 public_deps = [ | 194 public_deps = [ |
| 195 "//components/autofill/core/browser/proto", | 195 "//components/autofill/core/browser/proto", |
| 196 "//components/autofill/core/common", | 196 "//components/autofill/core/common", |
| 197 "//components/resources", | 197 "//components/resources", |
| 198 "//skia", | 198 "//skia", |
| 199 ] | 199 ] |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 "//net:test_support", | 402 "//net:test_support", |
| 403 "//sql", | 403 "//sql", |
| 404 "//testing/gmock", | 404 "//testing/gmock", |
| 405 "//testing/gtest", | 405 "//testing/gtest", |
| 406 "//third_party/libaddressinput:util", | 406 "//third_party/libaddressinput:util", |
| 407 "//third_party/libphonenumber", | 407 "//third_party/libphonenumber", |
| 408 "//ui/base", | 408 "//ui/base", |
| 409 "//url", | 409 "//url", |
| 410 ] | 410 ] |
| 411 } | 411 } |
| OLD | NEW |