| 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 18 matching lines...) Expand all Loading... |
| 29 "wallet/wallet_client.h", | 29 "wallet/wallet_client.h", |
| 30 "wallet/wallet_client_delegate.h", | 30 "wallet/wallet_client_delegate.h", |
| 31 "wallet/wallet_items.cc", | 31 "wallet/wallet_items.cc", |
| 32 "wallet/wallet_items.h", | 32 "wallet/wallet_items.h", |
| 33 "wallet/wallet_service_url.cc", | 33 "wallet/wallet_service_url.cc", |
| 34 "wallet/wallet_service_url.h", | 34 "wallet/wallet_service_url.h", |
| 35 "wallet/wallet_signin_helper.cc", | 35 "wallet/wallet_signin_helper.cc", |
| 36 "wallet/wallet_signin_helper.h", | 36 "wallet/wallet_signin_helper.h", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 public_deps = [ |
| 40 "//skia", |
| 41 ] |
| 39 deps = [ | 42 deps = [ |
| 40 ":risk_proto", | 43 ":risk_proto", |
| 41 "//base", | 44 "//base", |
| 42 "//base:i18n", | 45 "//base:i18n", |
| 43 "//base:prefs", | 46 "//base:prefs", |
| 44 "//components/autofill/content/common", | 47 "//components/autofill/content/common", |
| 45 "//components/autofill/core/browser", | 48 "//components/autofill/core/browser", |
| 46 "//components/autofill/core/browser:regexes", | 49 "//components/autofill/core/browser:regexes", |
| 47 "//components/autofill/core/common", | 50 "//components/autofill/core/common", |
| 48 "//components/os_crypt", | 51 "//components/os_crypt", |
| 49 "//components/resources", | 52 "//components/resources", |
| 50 "//components/strings", | 53 "//components/strings", |
| 51 "//components/user_prefs", | 54 "//components/user_prefs", |
| 52 "//components/webdata/common", | 55 "//components/webdata/common", |
| 53 "//content/public/browser", | 56 "//content/public/browser", |
| 54 "//content/public/common", | 57 "//content/public/common", |
| 55 "//google_apis", | 58 "//google_apis", |
| 56 "//ipc", | 59 "//ipc", |
| 57 "//skia", | |
| 58 "//sql", | 60 "//sql", |
| 59 "//third_party/icu", | 61 "//third_party/icu", |
| 60 "//third_party/libphonenumber", | 62 "//third_party/libphonenumber", |
| 61 "//third_party/libjingle", | 63 "//third_party/libjingle", |
| 62 "//ui/base", | 64 "//ui/base", |
| 63 "//ui/gfx", | 65 "//ui/gfx", |
| 64 "//ui/gfx/geometry", | 66 "//ui/gfx/geometry", |
| 65 "//url", | 67 "//url", |
| 66 ] | 68 ] |
| 67 | |
| 68 forward_dependent_configs_from = [ | |
| 69 "//skia", | |
| 70 ] | |
| 71 } | 69 } |
| 72 | 70 |
| 73 proto_library("risk_proto") { | 71 proto_library("risk_proto") { |
| 74 sources = [ | 72 sources = [ |
| 75 "risk/proto/fingerprint.proto", | 73 "risk/proto/fingerprint.proto", |
| 76 ] | 74 ] |
| 77 proto_out_dir = "components/autofill/content/browser/risk/proto" | 75 proto_out_dir = "components/autofill/content/browser/risk/proto" |
| 78 } | 76 } |
| 79 | 77 |
| 80 static_library("test_support") { | 78 static_library("test_support") { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 105 "wallet/wallet_signin_helper_unittest.cc", | 103 "wallet/wallet_signin_helper_unittest.cc", |
| 106 ] | 104 ] |
| 107 | 105 |
| 108 deps = [ | 106 deps = [ |
| 109 ":browser", | 107 ":browser", |
| 110 ":test_support", | 108 ":test_support", |
| 111 "//testing/gmock", | 109 "//testing/gmock", |
| 112 "//testing/gtest", | 110 "//testing/gtest", |
| 113 ] | 111 ] |
| 114 } | 112 } |
| OLD | NEW |