| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "webdata/autocomplete_sync_bridge.cc", | 129 "webdata/autocomplete_sync_bridge.cc", |
| 130 "webdata/autocomplete_sync_bridge.h", | 130 "webdata/autocomplete_sync_bridge.h", |
| 131 "webdata/autocomplete_syncable_service.cc", | 131 "webdata/autocomplete_syncable_service.cc", |
| 132 "webdata/autocomplete_syncable_service.h", | 132 "webdata/autocomplete_syncable_service.h", |
| 133 "webdata/autofill_change.cc", | 133 "webdata/autofill_change.cc", |
| 134 "webdata/autofill_change.h", | 134 "webdata/autofill_change.h", |
| 135 "webdata/autofill_data_type_controller.cc", | 135 "webdata/autofill_data_type_controller.cc", |
| 136 "webdata/autofill_data_type_controller.h", | 136 "webdata/autofill_data_type_controller.h", |
| 137 "webdata/autofill_entry.cc", | 137 "webdata/autofill_entry.cc", |
| 138 "webdata/autofill_entry.h", | 138 "webdata/autofill_entry.h", |
| 139 "webdata/autofill_metadata_change_list.cc", | |
| 140 "webdata/autofill_metadata_change_list.h", | |
| 141 "webdata/autofill_profile_data_type_controller.cc", | 139 "webdata/autofill_profile_data_type_controller.cc", |
| 142 "webdata/autofill_profile_data_type_controller.h", | 140 "webdata/autofill_profile_data_type_controller.h", |
| 143 "webdata/autofill_profile_syncable_service.cc", | 141 "webdata/autofill_profile_syncable_service.cc", |
| 144 "webdata/autofill_profile_syncable_service.h", | 142 "webdata/autofill_profile_syncable_service.h", |
| 145 "webdata/autofill_table.cc", | 143 "webdata/autofill_table.cc", |
| 146 "webdata/autofill_table.h", | 144 "webdata/autofill_table.h", |
| 147 "webdata/autofill_table_encryptor.h", | 145 "webdata/autofill_table_encryptor.h", |
| 148 "webdata/autofill_table_encryptor_factory.cc", | 146 "webdata/autofill_table_encryptor_factory.cc", |
| 149 "webdata/autofill_table_encryptor_factory.h", | 147 "webdata/autofill_table_encryptor_factory.h", |
| 150 "webdata/autofill_wallet_metadata_syncable_service.cc", | 148 "webdata/autofill_wallet_metadata_syncable_service.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 177 "autofill_assistant.h", | 175 "autofill_assistant.h", |
| 178 "autofill_credit_card_filling_infobar_delegate_mobile.cc", | 176 "autofill_credit_card_filling_infobar_delegate_mobile.cc", |
| 179 "autofill_credit_card_filling_infobar_delegate_mobile.h", | 177 "autofill_credit_card_filling_infobar_delegate_mobile.h", |
| 180 "autofill_save_card_infobar_delegate_mobile.cc", | 178 "autofill_save_card_infobar_delegate_mobile.cc", |
| 181 "autofill_save_card_infobar_delegate_mobile.h", | 179 "autofill_save_card_infobar_delegate_mobile.h", |
| 182 "autofill_save_card_infobar_mobile.h", | 180 "autofill_save_card_infobar_mobile.h", |
| 183 ] | 181 ] |
| 184 } | 182 } |
| 185 | 183 |
| 186 if (!is_android) { | 184 if (!is_android) { |
| 187 sources += [ | 185 sources += [ "ui/save_card_bubble_controller.h" ] |
| 188 "ui/save_card_bubble_controller.h", | |
| 189 ] | |
| 190 } | 186 } |
| 191 | 187 |
| 192 configs += [ "//build/config:precompiled_headers" ] | 188 configs += [ "//build/config:precompiled_headers" ] |
| 193 | 189 |
| 194 public_deps = [ | 190 public_deps = [ |
| 195 "//components/autofill/core/browser/proto", | 191 "//components/autofill/core/browser/proto", |
| 196 "//components/autofill/core/common", | 192 "//components/autofill/core/common", |
| 197 "//components/resources", | 193 "//components/resources", |
| 198 "//skia", | 194 "//skia", |
| 199 ] | 195 ] |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 "//net:test_support", | 398 "//net:test_support", |
| 403 "//sql", | 399 "//sql", |
| 404 "//testing/gmock", | 400 "//testing/gmock", |
| 405 "//testing/gtest", | 401 "//testing/gtest", |
| 406 "//third_party/libaddressinput:util", | 402 "//third_party/libaddressinput:util", |
| 407 "//third_party/libphonenumber", | 403 "//third_party/libphonenumber", |
| 408 "//ui/base", | 404 "//ui/base", |
| 409 "//url", | 405 "//url", |
| 410 ] | 406 ] |
| 411 } | 407 } |
| OLD | NEW |