| 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 10 matching lines...) Expand all Loading... |
| 21 "autofill_client.h", | 21 "autofill_client.h", |
| 22 "autofill_country.cc", | 22 "autofill_country.cc", |
| 23 "autofill_country.h", | 23 "autofill_country.h", |
| 24 "autofill_data_model.cc", | 24 "autofill_data_model.cc", |
| 25 "autofill_data_model.h", | 25 "autofill_data_model.h", |
| 26 "autofill_data_util.cc", | 26 "autofill_data_util.cc", |
| 27 "autofill_data_util.h", | 27 "autofill_data_util.h", |
| 28 "autofill_download_manager.cc", | 28 "autofill_download_manager.cc", |
| 29 "autofill_download_manager.h", | 29 "autofill_download_manager.h", |
| 30 "autofill_driver.h", | 30 "autofill_driver.h", |
| 31 "autofill_driver_factory.cc", |
| 32 "autofill_driver_factory.h", |
| 31 "autofill_experiments.cc", | 33 "autofill_experiments.cc", |
| 32 "autofill_experiments.h", | 34 "autofill_experiments.h", |
| 33 "autofill_external_delegate.cc", | 35 "autofill_external_delegate.cc", |
| 34 "autofill_external_delegate.h", | 36 "autofill_external_delegate.h", |
| 35 "autofill_field.cc", | 37 "autofill_field.cc", |
| 36 "autofill_field.h", | 38 "autofill_field.h", |
| 37 "autofill_ie_toolbar_import_win.cc", | 39 "autofill_ie_toolbar_import_win.cc", |
| 38 "autofill_ie_toolbar_import_win.h", | 40 "autofill_ie_toolbar_import_win.h", |
| 39 "autofill_manager.cc", | 41 "autofill_manager.cc", |
| 40 "autofill_manager.h", | 42 "autofill_manager.h", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 sources = [ | 294 sources = [ |
| 293 "address_field_unittest.cc", | 295 "address_field_unittest.cc", |
| 294 "address_i18n_unittest.cc", | 296 "address_i18n_unittest.cc", |
| 295 "address_rewriter_unittest.cc", | 297 "address_rewriter_unittest.cc", |
| 296 "address_unittest.cc", | 298 "address_unittest.cc", |
| 297 "autocomplete_history_manager_unittest.cc", | 299 "autocomplete_history_manager_unittest.cc", |
| 298 "autofill_country_unittest.cc", | 300 "autofill_country_unittest.cc", |
| 299 "autofill_data_model_unittest.cc", | 301 "autofill_data_model_unittest.cc", |
| 300 "autofill_data_util_unittest.cc", | 302 "autofill_data_util_unittest.cc", |
| 301 "autofill_download_manager_unittest.cc", | 303 "autofill_download_manager_unittest.cc", |
| 304 "autofill_driver_factory_unittest.cc", |
| 302 "autofill_external_delegate_unittest.cc", | 305 "autofill_external_delegate_unittest.cc", |
| 303 "autofill_field_unittest.cc", | 306 "autofill_field_unittest.cc", |
| 304 "autofill_ie_toolbar_import_win_unittest.cc", | 307 "autofill_ie_toolbar_import_win_unittest.cc", |
| 305 "autofill_manager_unittest.cc", | 308 "autofill_manager_unittest.cc", |
| 306 "autofill_merge_unittest.cc", | 309 "autofill_merge_unittest.cc", |
| 307 "autofill_metrics_unittest.cc", | 310 "autofill_metrics_unittest.cc", |
| 308 "autofill_profile_comparator_unittest.cc", | 311 "autofill_profile_comparator_unittest.cc", |
| 309 "autofill_profile_unittest.cc", | 312 "autofill_profile_unittest.cc", |
| 310 "autofill_type_unittest.cc", | 313 "autofill_type_unittest.cc", |
| 311 "contact_info_unittest.cc", | 314 "contact_info_unittest.cc", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "//net:test_support", | 372 "//net:test_support", |
| 370 "//sql", | 373 "//sql", |
| 371 "//testing/gmock", | 374 "//testing/gmock", |
| 372 "//testing/gtest", | 375 "//testing/gtest", |
| 373 "//third_party/libaddressinput:util", | 376 "//third_party/libaddressinput:util", |
| 374 "//third_party/libphonenumber", | 377 "//third_party/libphonenumber", |
| 375 "//ui/base", | 378 "//ui/base", |
| 376 "//url", | 379 "//url", |
| 377 ] | 380 ] |
| 378 } | 381 } |
| OLD | NEW |