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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 "//net:test_support", | 387 "//net:test_support", |
390 "//sql", | 388 "//sql", |
391 "//testing/gmock", | 389 "//testing/gmock", |
392 "//testing/gtest", | 390 "//testing/gtest", |
393 "//third_party/libaddressinput:util", | 391 "//third_party/libaddressinput:util", |
394 "//third_party/libphonenumber", | 392 "//third_party/libphonenumber", |
395 "//ui/base", | 393 "//ui/base", |
396 "//url", | 394 "//url", |
397 ] | 395 ] |
398 } | 396 } |
OLD | NEW |