| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "personal_data_manager_observer.h", | 106 "personal_data_manager_observer.h", |
| 107 "phone_field.cc", | 107 "phone_field.cc", |
| 108 "phone_field.h", | 108 "phone_field.h", |
| 109 "phone_number.cc", | 109 "phone_number.cc", |
| 110 "phone_number.h", | 110 "phone_number.h", |
| 111 "phone_number_i18n.cc", | 111 "phone_number_i18n.cc", |
| 112 "phone_number_i18n.h", | 112 "phone_number_i18n.h", |
| 113 "popup_item_ids.h", | 113 "popup_item_ids.h", |
| 114 "region_combobox_model.cc", | 114 "region_combobox_model.cc", |
| 115 "region_combobox_model.h", | 115 "region_combobox_model.h", |
| 116 "risk_data_loader.h", |
| 116 "server_field_types_util.cc", | 117 "server_field_types_util.cc", |
| 117 "server_field_types_util.h", | 118 "server_field_types_util.h", |
| 118 "state_names.cc", | 119 "state_names.cc", |
| 119 "state_names.h", | 120 "state_names.h", |
| 120 "suggestion.cc", | 121 "suggestion.cc", |
| 121 "suggestion.h", | 122 "suggestion.h", |
| 122 "ui/card_unmask_prompt_controller.h", | 123 "ui/card_unmask_prompt_controller.h", |
| 123 "ui/card_unmask_prompt_controller_impl.cc", | 124 "ui/card_unmask_prompt_controller_impl.cc", |
| 124 "ui/card_unmask_prompt_controller_impl.h", | 125 "ui/card_unmask_prompt_controller_impl.h", |
| 125 "ui/card_unmask_prompt_view.h", | 126 "ui/card_unmask_prompt_view.h", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 "//net:test_support", | 389 "//net:test_support", |
| 389 "//sql", | 390 "//sql", |
| 390 "//testing/gmock", | 391 "//testing/gmock", |
| 391 "//testing/gtest", | 392 "//testing/gtest", |
| 392 "//third_party/libaddressinput:util", | 393 "//third_party/libaddressinput:util", |
| 393 "//third_party/libphonenumber", | 394 "//third_party/libphonenumber", |
| 394 "//ui/base", | 395 "//ui/base", |
| 395 "//url", | 396 "//url", |
| 396 ] | 397 ] |
| 397 } | 398 } |
| OLD | NEW |