| 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 30 matching lines...) Expand all Loading... |
| 41 "//base", | 41 "//base", |
| 42 "//base:i18n", | 42 "//base:i18n", |
| 43 "//base:prefs", | 43 "//base:prefs", |
| 44 "//components/autofill/content/common", | 44 "//components/autofill/content/common", |
| 45 "//components/autofill/core/browser", | 45 "//components/autofill/core/browser", |
| 46 "//components/autofill/core/browser:regexes", | 46 "//components/autofill/core/browser:regexes", |
| 47 "//components/autofill/core/common", | 47 "//components/autofill/core/common", |
| 48 "//components/os_crypt", | 48 "//components/os_crypt", |
| 49 "//components/resources", | 49 "//components/resources", |
| 50 "//components/strings", | 50 "//components/strings", |
| 51 "//components/webdata/common", |
| 51 "//content/public/browser", | 52 "//content/public/browser", |
| 52 "//content/public/common", | 53 "//content/public/common", |
| 53 "//google_apis", | 54 "//google_apis", |
| 54 "//ipc", | 55 "//ipc", |
| 55 "//skia", | 56 "//skia", |
| 56 "//sql", | 57 "//sql", |
| 57 "//third_party/icu", | 58 "//third_party/icu", |
| 58 "//third_party/libphonenumber", | 59 "//third_party/libphonenumber", |
| 59 "//ui/base", | 60 "//ui/base", |
| 60 "//ui/gfx", | 61 "//ui/gfx", |
| 61 "//ui/gfx/geometry", | 62 "//ui/gfx/geometry", |
| 62 "//url", | 63 "//url", |
| 63 #"../third_party/libjingle/libjingle.gyp:libjingle", TODO(GYP) | 64 #"../third_party/libjingle/libjingle.gyp:libjingle", TODO(GYP) |
| 64 #"user_prefs", TODO(GYP) | 65 #"user_prefs", TODO(GYP) |
| 65 #"webdata_common", TODO(GYP) | |
| 66 ] | 66 ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 proto_library("risk_proto") { | 69 proto_library("risk_proto") { |
| 70 sources = [ | 70 sources = [ |
| 71 "risk/proto/fingerprint.proto", | 71 "risk/proto/fingerprint.proto", |
| 72 ] | 72 ] |
| 73 proto_in_dir = "risk/proto" | 73 proto_in_dir = "risk/proto" |
| 74 proto_out_dir = "components/autofill/content/browser/risk/proto" | 74 proto_out_dir = "components/autofill/content/browser/risk/proto" |
| 75 } | 75 } |
| 76 | 76 |
| 77 static_library("test_support") { | 77 static_library("test_support") { |
| 78 sources = [ | 78 sources = [ |
| 79 "wallet/mock_wallet_client.cc", | 79 "wallet/mock_wallet_client.cc", |
| 80 "wallet/mock_wallet_client.h", | 80 "wallet/mock_wallet_client.h", |
| 81 "wallet/wallet_test_util.cc", | 81 "wallet/wallet_test_util.cc", |
| 82 "wallet/wallet_test_util.h", | 82 "wallet/wallet_test_util.h", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 deps = [ | 85 deps = [ |
| 86 "//testing/gmock", | 86 "//testing/gmock", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |