| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "autofill_metrics.h", | 47 "autofill_metrics.h", |
| 48 "autofill_popup_delegate.h", | 48 "autofill_popup_delegate.h", |
| 49 "autofill_profile.cc", | 49 "autofill_profile.cc", |
| 50 "autofill_profile.h", | 50 "autofill_profile.h", |
| 51 "autofill_profile_comparator.cc", | 51 "autofill_profile_comparator.cc", |
| 52 "autofill_profile_comparator.h", | 52 "autofill_profile_comparator.h", |
| 53 "autofill_regex_constants.cc", | 53 "autofill_regex_constants.cc", |
| 54 "autofill_regex_constants.h", | 54 "autofill_regex_constants.h", |
| 55 "autofill_scanner.cc", | 55 "autofill_scanner.cc", |
| 56 "autofill_scanner.h", | 56 "autofill_scanner.h", |
| 57 "autofill_sync_constants.cc", | |
| 58 "autofill_sync_constants.h", | |
| 59 "autofill_type.cc", | 57 "autofill_type.cc", |
| 60 "autofill_type.h", | 58 "autofill_type.h", |
| 61 "autofill_wallet_data_type_controller.cc", | 59 "autofill_wallet_data_type_controller.cc", |
| 62 "autofill_wallet_data_type_controller.h", | 60 "autofill_wallet_data_type_controller.h", |
| 63 "card_unmask_delegate.cc", | 61 "card_unmask_delegate.cc", |
| 64 "card_unmask_delegate.h", | 62 "card_unmask_delegate.h", |
| 65 "contact_info.cc", | 63 "contact_info.cc", |
| 66 "contact_info.h", | 64 "contact_info.h", |
| 67 "country_combobox_model.cc", | 65 "country_combobox_model.cc", |
| 68 "country_combobox_model.h", | 66 "country_combobox_model.h", |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "//net:test_support", | 399 "//net:test_support", |
| 402 "//sql", | 400 "//sql", |
| 403 "//testing/gmock", | 401 "//testing/gmock", |
| 404 "//testing/gtest", | 402 "//testing/gtest", |
| 405 "//third_party/libaddressinput:util", | 403 "//third_party/libaddressinput:util", |
| 406 "//third_party/libphonenumber", | 404 "//third_party/libphonenumber", |
| 407 "//ui/base", | 405 "//ui/base", |
| 408 "//url", | 406 "//url", |
| 409 ] | 407 ] |
| 410 } | 408 } |
| OLD | NEW |