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", |
(...skipping 20 matching lines...) Expand all Loading... |
31 "wallet/wallet_client.h", | 31 "wallet/wallet_client.h", |
32 "wallet/wallet_client_delegate.h", | 32 "wallet/wallet_client_delegate.h", |
33 "wallet/wallet_items.cc", | 33 "wallet/wallet_items.cc", |
34 "wallet/wallet_items.h", | 34 "wallet/wallet_items.h", |
35 "wallet/wallet_service_url.cc", | 35 "wallet/wallet_service_url.cc", |
36 "wallet/wallet_service_url.h", | 36 "wallet/wallet_service_url.h", |
37 "wallet/wallet_signin_helper.cc", | 37 "wallet/wallet_signin_helper.cc", |
38 "wallet/wallet_signin_helper.h", | 38 "wallet/wallet_signin_helper.h", |
39 ] | 39 ] |
40 | 40 |
| 41 configs += [ "//components/autofill/core/browser:wallet_service" ] |
| 42 |
41 public_deps = [ | 43 public_deps = [ |
42 "//skia", | 44 "//skia", |
43 ] | 45 ] |
44 deps = [ | 46 deps = [ |
45 ":risk_proto", | 47 ":risk_proto", |
46 "//base", | 48 "//base", |
47 "//base:i18n", | 49 "//base:i18n", |
48 "//base:prefs", | 50 "//base:prefs", |
49 "//components/autofill/content/common", | 51 "//components/autofill/content/common", |
50 "//components/autofill/core/browser", | 52 "//components/autofill/core/browser", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "//content/public/common", | 122 "//content/public/common", |
121 "//content/test:test_support", | 123 "//content/test:test_support", |
122 "//google_apis", | 124 "//google_apis", |
123 "//ipc:test_support", | 125 "//ipc:test_support", |
124 "//net", | 126 "//net", |
125 "//net:test_support", | 127 "//net:test_support", |
126 "//testing/gmock", | 128 "//testing/gmock", |
127 "//testing/gtest", | 129 "//testing/gtest", |
128 ] | 130 ] |
129 } | 131 } |
OLD | NEW |