| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 # GYP version: components/autofill.gypi:autofill_content_browser | 7 # GYP version: components/autofill.gypi:autofill_content_browser |
| 8 static_library("browser") { | 8 static_library("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "content_autofill_driver.cc", | 10 "content_autofill_driver.cc", |
| 11 "content_autofill_driver.h", | 11 "content_autofill_driver.h", |
| 12 "content_autofill_driver_factory.cc", |
| 13 "content_autofill_driver_factory.h", |
| 12 "request_autocomplete_manager.cc", | 14 "request_autocomplete_manager.cc", |
| 13 "request_autocomplete_manager.h", | 15 "request_autocomplete_manager.h", |
| 14 "risk/fingerprint.cc", | 16 "risk/fingerprint.cc", |
| 15 "risk/fingerprint.h", | 17 "risk/fingerprint.h", |
| 16 "wallet/form_field_error.cc", | 18 "wallet/form_field_error.cc", |
| 17 "wallet/form_field_error.h", | 19 "wallet/form_field_error.h", |
| 18 "wallet/full_wallet.cc", | 20 "wallet/full_wallet.cc", |
| 19 "wallet/full_wallet.h", | 21 "wallet/full_wallet.h", |
| 20 "wallet/gaia_account.cc", | 22 "wallet/gaia_account.cc", |
| 21 "wallet/gaia_account.h", | 23 "wallet/gaia_account.h", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "//content/public/common", | 121 "//content/public/common", |
| 120 "//content/test:test_support", | 122 "//content/test:test_support", |
| 121 "//google_apis", | 123 "//google_apis", |
| 122 "//ipc:test_support", | 124 "//ipc:test_support", |
| 123 "//net", | 125 "//net", |
| 124 "//net:test_support", | 126 "//net:test_support", |
| 125 "//testing/gmock", | 127 "//testing/gmock", |
| 126 "//testing/gtest", | 128 "//testing/gtest", |
| 127 ] | 129 ] |
| 128 } | 130 } |
| OLD | NEW |