| 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", |
| 11 "address_field.cc", | 11 "address_field.cc", |
| 12 "address_field.h", | 12 "address_field.h", |
| 13 "address_i18n.cc", | 13 "address_i18n.cc", |
| 14 "address_i18n.h", | 14 "address_i18n.h", |
| 15 "address_rewriter.cc", | 15 "address_rewriter.cc", |
| 16 "address_rewriter.h", | 16 "address_rewriter.h", |
| 17 "address_rewriter_rules.cc", | 17 "address_rewriter_rules.cc", |
| 18 "autocomplete_history_manager.cc", | 18 "autocomplete_history_manager.cc", |
| 19 "autocomplete_history_manager.h", | 19 "autocomplete_history_manager.h", |
| 20 "autofill-inl.h", | 20 "autofill-inl.h", |
| 21 "autofill_client.h", | 21 "autofill_client.h", |
| 22 "autofill_clock.cc", |
| 23 "autofill_clock.h", |
| 22 "autofill_country.cc", | 24 "autofill_country.cc", |
| 23 "autofill_country.h", | 25 "autofill_country.h", |
| 24 "autofill_data_model.cc", | 26 "autofill_data_model.cc", |
| 25 "autofill_data_model.h", | 27 "autofill_data_model.h", |
| 26 "autofill_data_util.cc", | 28 "autofill_data_util.cc", |
| 27 "autofill_data_util.h", | 29 "autofill_data_util.h", |
| 28 "autofill_download_manager.cc", | 30 "autofill_download_manager.cc", |
| 29 "autofill_download_manager.h", | 31 "autofill_download_manager.h", |
| 30 "autofill_driver.h", | 32 "autofill_driver.h", |
| 31 "autofill_experiments.cc", | 33 "autofill_experiments.cc", |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//net:test_support", | 363 "//net:test_support", |
| 362 "//sql", | 364 "//sql", |
| 363 "//testing/gmock", | 365 "//testing/gmock", |
| 364 "//testing/gtest", | 366 "//testing/gtest", |
| 365 "//third_party/libaddressinput:util", | 367 "//third_party/libaddressinput:util", |
| 366 "//third_party/libphonenumber", | 368 "//third_party/libphonenumber", |
| 367 "//ui/base", | 369 "//ui/base", |
| 368 "//url", | 370 "//url", |
| 369 ] | 371 ] |
| 370 } | 372 } |
| OLD | NEW |