| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "autofill_sync_constants.cc", | 53 "autofill_sync_constants.cc", |
| 54 "autofill_sync_constants.h", | 54 "autofill_sync_constants.h", |
| 55 "autofill_type.cc", | 55 "autofill_type.cc", |
| 56 "autofill_type.h", | 56 "autofill_type.h", |
| 57 "autofill_wallet_data_type_controller.cc", | 57 "autofill_wallet_data_type_controller.cc", |
| 58 "autofill_wallet_data_type_controller.h", | 58 "autofill_wallet_data_type_controller.h", |
| 59 "card_unmask_delegate.cc", | 59 "card_unmask_delegate.cc", |
| 60 "card_unmask_delegate.h", | 60 "card_unmask_delegate.h", |
| 61 "contact_info.cc", | 61 "contact_info.cc", |
| 62 "contact_info.h", | 62 "contact_info.h", |
| 63 "country_combobox_model.cc", |
| 64 "country_combobox_model.h", |
| 63 "country_data.cc", | 65 "country_data.cc", |
| 64 "country_data.h", | 66 "country_data.h", |
| 65 "country_names.cc", | 67 "country_names.cc", |
| 66 "country_names.h", | 68 "country_names.h", |
| 67 "credit_card.cc", | 69 "credit_card.cc", |
| 68 "credit_card.h", | 70 "credit_card.h", |
| 69 "credit_card_field.cc", | 71 "credit_card_field.cc", |
| 70 "credit_card_field.h", | 72 "credit_card_field.h", |
| 71 "detail_input.cc", | 73 "detail_input.cc", |
| 72 "detail_input.h", | 74 "detail_input.h", |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "autofill_external_delegate_unittest.cc", | 302 "autofill_external_delegate_unittest.cc", |
| 301 "autofill_field_unittest.cc", | 303 "autofill_field_unittest.cc", |
| 302 "autofill_ie_toolbar_import_win_unittest.cc", | 304 "autofill_ie_toolbar_import_win_unittest.cc", |
| 303 "autofill_manager_unittest.cc", | 305 "autofill_manager_unittest.cc", |
| 304 "autofill_merge_unittest.cc", | 306 "autofill_merge_unittest.cc", |
| 305 "autofill_metrics_unittest.cc", | 307 "autofill_metrics_unittest.cc", |
| 306 "autofill_profile_comparator_unittest.cc", | 308 "autofill_profile_comparator_unittest.cc", |
| 307 "autofill_profile_unittest.cc", | 309 "autofill_profile_unittest.cc", |
| 308 "autofill_type_unittest.cc", | 310 "autofill_type_unittest.cc", |
| 309 "contact_info_unittest.cc", | 311 "contact_info_unittest.cc", |
| 312 "country_combobox_model_unittest.cc", |
| 310 "country_names_unittest.cc", | 313 "country_names_unittest.cc", |
| 311 "credit_card_field_unittest.cc", | 314 "credit_card_field_unittest.cc", |
| 312 "credit_card_unittest.cc", | 315 "credit_card_unittest.cc", |
| 313 "field_candidates_unittest.cc", | 316 "field_candidates_unittest.cc", |
| 314 "form_field_unittest.cc", | 317 "form_field_unittest.cc", |
| 315 "form_structure_unittest.cc", | 318 "form_structure_unittest.cc", |
| 316 "legal_message_line_unittest.cc", | 319 "legal_message_line_unittest.cc", |
| 317 "name_field_unittest.cc", | 320 "name_field_unittest.cc", |
| 318 "password_generator_unittest.cc", | 321 "password_generator_unittest.cc", |
| 319 "payments/full_card_request_unittest.cc", | 322 "payments/full_card_request_unittest.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 "//net:test_support", | 369 "//net:test_support", |
| 367 "//sql", | 370 "//sql", |
| 368 "//testing/gmock", | 371 "//testing/gmock", |
| 369 "//testing/gtest", | 372 "//testing/gtest", |
| 370 "//third_party/libaddressinput:util", | 373 "//third_party/libaddressinput:util", |
| 371 "//third_party/libphonenumber", | 374 "//third_party/libphonenumber", |
| 372 "//ui/base", | 375 "//ui/base", |
| 373 "//url", | 376 "//url", |
| 374 ] | 377 ] |
| 375 } | 378 } |
| OLD | NEW |