Chromium Code Reviews| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 "server_field_types_util.cc", | 117 "server_field_types_util.cc", |
| 118 "server_field_types_util.h", | 118 "server_field_types_util.h", |
| 119 "state_names.cc", | 119 "state_names.cc", |
| 120 "state_names.h", | 120 "state_names.h", |
| 121 "suggestion.cc", | 121 "suggestion.cc", |
| 122 "suggestion.h", | 122 "suggestion.h", |
| 123 "ui/card_unmask_prompt_controller.h", | 123 "ui/card_unmask_prompt_controller.h", |
| 124 "ui/card_unmask_prompt_controller_impl.cc", | 124 "ui/card_unmask_prompt_controller_impl.cc", |
| 125 "ui/card_unmask_prompt_controller_impl.h", | 125 "ui/card_unmask_prompt_controller_impl.h", |
| 126 "ui/card_unmask_prompt_view.h", | 126 "ui/card_unmask_prompt_view.h", |
| 127 "ui/save_card_bubble_controller.h", | |
|
Evan Stade
2017/04/12 23:56:22
I believe this probably shouldn't be included on i
Jared Saul
2017/04/13 00:42:35
Done. Please let me know if the conditional block
Evan Stade
2017/04/13 02:21:31
seems ok
Jared Saul
2017/04/13 17:39:37
iOS still uses test_autofill_client, so changed th
| |
| 127 "validation.cc", | 128 "validation.cc", |
| 128 "validation.h", | 129 "validation.h", |
| 129 "webdata/autocomplete_sync_bridge.cc", | 130 "webdata/autocomplete_sync_bridge.cc", |
| 130 "webdata/autocomplete_sync_bridge.h", | 131 "webdata/autocomplete_sync_bridge.h", |
| 131 "webdata/autocomplete_syncable_service.cc", | 132 "webdata/autocomplete_syncable_service.cc", |
| 132 "webdata/autocomplete_syncable_service.h", | 133 "webdata/autocomplete_syncable_service.h", |
| 133 "webdata/autofill_change.cc", | 134 "webdata/autofill_change.cc", |
| 134 "webdata/autofill_change.h", | 135 "webdata/autofill_change.h", |
| 135 "webdata/autofill_data_type_controller.cc", | 136 "webdata/autofill_data_type_controller.cc", |
| 136 "webdata/autofill_data_type_controller.h", | 137 "webdata/autofill_data_type_controller.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 243 "test_autofill_client.cc", | 244 "test_autofill_client.cc", |
| 244 "test_autofill_client.h", | 245 "test_autofill_client.h", |
| 245 "test_autofill_clock.cc", | 246 "test_autofill_clock.cc", |
| 246 "test_autofill_clock.h", | 247 "test_autofill_clock.h", |
| 247 "test_autofill_driver.cc", | 248 "test_autofill_driver.cc", |
| 248 "test_autofill_driver.h", | 249 "test_autofill_driver.h", |
| 249 "test_autofill_external_delegate.cc", | 250 "test_autofill_external_delegate.cc", |
| 250 "test_autofill_external_delegate.h", | 251 "test_autofill_external_delegate.h", |
| 251 "test_personal_data_manager.cc", | 252 "test_personal_data_manager.cc", |
| 252 "test_personal_data_manager.h", | 253 "test_personal_data_manager.h", |
| 254 "ui/mock_save_card_bubble_controller.cc", | |
|
Evan Stade
2017/04/12 23:56:22
ditto
Jared Saul
2017/04/13 00:42:35
Done.
| |
| 255 "ui/mock_save_card_bubble_controller.h", | |
| 253 ] | 256 ] |
| 254 | 257 |
| 255 public_deps = [ | 258 public_deps = [ |
| 256 ":browser", | 259 ":browser", |
| 257 ] | 260 ] |
| 258 | 261 |
| 259 deps = [ | 262 deps = [ |
| 260 "//base", | 263 "//base", |
| 261 "//base/test:test_support", | 264 "//base/test:test_support", |
| 262 "//components/autofill/core/browser", | 265 "//components/autofill/core/browser", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 389 "//net:test_support", | 392 "//net:test_support", |
| 390 "//sql", | 393 "//sql", |
| 391 "//testing/gmock", | 394 "//testing/gmock", |
| 392 "//testing/gtest", | 395 "//testing/gtest", |
| 393 "//third_party/libaddressinput:util", | 396 "//third_party/libaddressinput:util", |
| 394 "//third_party/libphonenumber", | 397 "//third_party/libphonenumber", |
| 395 "//ui/base", | 398 "//ui/base", |
| 396 "//url", | 399 "//url", |
| 397 ] | 400 ] |
| 398 } | 401 } |
| OLD | NEW |