| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "webdata/autofill_entry.cc", | 128 "webdata/autofill_entry.cc", |
| 129 "webdata/autofill_entry.h", | 129 "webdata/autofill_entry.h", |
| 130 "webdata/autofill_metadata_change_list.cc", | 130 "webdata/autofill_metadata_change_list.cc", |
| 131 "webdata/autofill_metadata_change_list.h", | 131 "webdata/autofill_metadata_change_list.h", |
| 132 "webdata/autofill_profile_data_type_controller.cc", | 132 "webdata/autofill_profile_data_type_controller.cc", |
| 133 "webdata/autofill_profile_data_type_controller.h", | 133 "webdata/autofill_profile_data_type_controller.h", |
| 134 "webdata/autofill_profile_syncable_service.cc", | 134 "webdata/autofill_profile_syncable_service.cc", |
| 135 "webdata/autofill_profile_syncable_service.h", | 135 "webdata/autofill_profile_syncable_service.h", |
| 136 "webdata/autofill_table.cc", | 136 "webdata/autofill_table.cc", |
| 137 "webdata/autofill_table.h", | 137 "webdata/autofill_table.h", |
| 138 "webdata/autofill_table_encryptor.h", |
| 139 "webdata/autofill_table_encryptor_factory.cc", |
| 140 "webdata/autofill_table_encryptor_factory.h", |
| 138 "webdata/autofill_wallet_metadata_syncable_service.cc", | 141 "webdata/autofill_wallet_metadata_syncable_service.cc", |
| 139 "webdata/autofill_wallet_metadata_syncable_service.h", | 142 "webdata/autofill_wallet_metadata_syncable_service.h", |
| 140 "webdata/autofill_wallet_syncable_service.cc", | 143 "webdata/autofill_wallet_syncable_service.cc", |
| 141 "webdata/autofill_wallet_syncable_service.h", | 144 "webdata/autofill_wallet_syncable_service.h", |
| 142 "webdata/autofill_webdata.h", | 145 "webdata/autofill_webdata.h", |
| 143 "webdata/autofill_webdata_backend.h", | 146 "webdata/autofill_webdata_backend.h", |
| 144 "webdata/autofill_webdata_backend_impl.cc", | 147 "webdata/autofill_webdata_backend_impl.cc", |
| 145 "webdata/autofill_webdata_backend_impl.h", | 148 "webdata/autofill_webdata_backend_impl.h", |
| 146 "webdata/autofill_webdata_service.cc", | 149 "webdata/autofill_webdata_service.cc", |
| 147 "webdata/autofill_webdata_service.h", | 150 "webdata/autofill_webdata_service.h", |
| 148 "webdata/autofill_webdata_service_observer.h", | 151 "webdata/autofill_webdata_service_observer.h", |
| 152 "webdata/system_encryptor.cc", |
| 153 "webdata/system_encryptor.h", |
| 149 "webdata/web_data_model_type_controller.cc", | 154 "webdata/web_data_model_type_controller.cc", |
| 150 "webdata/web_data_model_type_controller.h", | 155 "webdata/web_data_model_type_controller.h", |
| 151 ] | 156 ] |
| 152 | 157 |
| 153 if (is_ios) { | 158 if (is_ios) { |
| 154 sources += [ | 159 sources += [ |
| 155 "keyboard_accessory_metrics_logger.h", | 160 "keyboard_accessory_metrics_logger.h", |
| 156 "keyboard_accessory_metrics_logger.mm", | 161 "keyboard_accessory_metrics_logger.mm", |
| 157 ] | 162 ] |
| 158 } | 163 } |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 "//net:test_support", | 371 "//net:test_support", |
| 367 "//sql", | 372 "//sql", |
| 368 "//testing/gmock", | 373 "//testing/gmock", |
| 369 "//testing/gtest", | 374 "//testing/gtest", |
| 370 "//third_party/libaddressinput:util", | 375 "//third_party/libaddressinput:util", |
| 371 "//third_party/libphonenumber", | 376 "//third_party/libphonenumber", |
| 372 "//ui/base", | 377 "//ui/base", |
| 373 "//url", | 378 "//url", |
| 374 ] | 379 ] |
| 375 } | 380 } |
| OLD | NEW |