| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "state_names.cc", | 110 "state_names.cc", |
| 111 "state_names.h", | 111 "state_names.h", |
| 112 "suggestion.cc", | 112 "suggestion.cc", |
| 113 "suggestion.h", | 113 "suggestion.h", |
| 114 "ui/card_unmask_prompt_controller.h", | 114 "ui/card_unmask_prompt_controller.h", |
| 115 "ui/card_unmask_prompt_controller_impl.cc", | 115 "ui/card_unmask_prompt_controller_impl.cc", |
| 116 "ui/card_unmask_prompt_controller_impl.h", | 116 "ui/card_unmask_prompt_controller_impl.h", |
| 117 "ui/card_unmask_prompt_view.h", | 117 "ui/card_unmask_prompt_view.h", |
| 118 "validation.cc", | 118 "validation.cc", |
| 119 "validation.h", | 119 "validation.h", |
| 120 "webdata/autocomplete_sync_bridge.cc", |
| 121 "webdata/autocomplete_sync_bridge.h", |
| 120 "webdata/autocomplete_syncable_service.cc", | 122 "webdata/autocomplete_syncable_service.cc", |
| 121 "webdata/autocomplete_syncable_service.h", | 123 "webdata/autocomplete_syncable_service.h", |
| 122 "webdata/autofill_change.cc", | 124 "webdata/autofill_change.cc", |
| 123 "webdata/autofill_change.h", | 125 "webdata/autofill_change.h", |
| 124 "webdata/autofill_data_type_controller.cc", | 126 "webdata/autofill_data_type_controller.cc", |
| 125 "webdata/autofill_data_type_controller.h", | 127 "webdata/autofill_data_type_controller.h", |
| 126 "webdata/autofill_entry.cc", | 128 "webdata/autofill_entry.cc", |
| 127 "webdata/autofill_entry.h", | 129 "webdata/autofill_entry.h", |
| 128 "webdata/autofill_profile_data_type_controller.cc", | 130 "webdata/autofill_profile_data_type_controller.cc", |
| 129 "webdata/autofill_profile_data_type_controller.h", | 131 "webdata/autofill_profile_data_type_controller.h", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "//net:test_support", | 357 "//net:test_support", |
| 356 "//sql", | 358 "//sql", |
| 357 "//testing/gmock", | 359 "//testing/gmock", |
| 358 "//testing/gtest", | 360 "//testing/gtest", |
| 359 "//third_party/libaddressinput:util", | 361 "//third_party/libaddressinput:util", |
| 360 "//third_party/libphonenumber", | 362 "//third_party/libphonenumber", |
| 361 "//ui/base", | 363 "//ui/base", |
| 362 "//url", | 364 "//url", |
| 363 ] | 365 ] |
| 364 } | 366 } |
| OLD | NEW |