| 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 17 matching lines...) Expand all Loading... |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 ":risk_proto", | 29 ":risk_proto", |
| 30 "//skia", | 30 "//skia", |
| 31 ] | 31 ] |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//base:i18n", | 34 "//base:i18n", |
| 35 "//components/autofill/content/common", | 35 "//components/autofill/content/common", |
| 36 "//components/autofill/core/browser", | 36 "//components/autofill/core/browser", |
| 37 "//components/autofill/core/common", | 37 "//components/autofill/core/common", |
| 38 "//components/os_crypt", |
| 38 "//components/prefs", | 39 "//components/prefs", |
| 39 "//components/os_crypt", | |
| 40 "//components/resources", | 40 "//components/resources", |
| 41 "//components/strings", | 41 "//components/strings", |
| 42 "//components/user_prefs", | 42 "//components/user_prefs", |
| 43 "//components/webdata/common", | 43 "//components/webdata/common", |
| 44 "//content/public/browser", | 44 "//content/public/browser", |
| 45 "//content/public/common", | 45 "//content/public/common", |
| 46 "//google_apis", | 46 "//google_apis", |
| 47 "//gpu/config", | 47 "//gpu/config", |
| 48 "//ipc", | 48 "//ipc", |
| 49 "//net", | 49 "//net", |
| 50 "//sql", | 50 "//sql", |
| 51 "//third_party/icu", | 51 "//third_party/icu", |
| 52 "//third_party/libphonenumber", | 52 "//third_party/libphonenumber", |
| 53 "//ui/base", | 53 "//ui/base", |
| 54 "//ui/display", |
| 54 "//ui/gfx", | 55 "//ui/gfx", |
| 55 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
| 56 "//url", | 57 "//url", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| 60 proto_library("risk_proto") { | 61 proto_library("risk_proto") { |
| 61 sources = [ | 62 sources = [ |
| 62 "risk/proto/fingerprint.proto", | 63 "risk/proto/fingerprint.proto", |
| 63 ] | 64 ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 88 "//content/test:test_support", | 89 "//content/test:test_support", |
| 89 "//google_apis", | 90 "//google_apis", |
| 90 "//google_apis:test_support", | 91 "//google_apis:test_support", |
| 91 "//ipc:test_support", | 92 "//ipc:test_support", |
| 92 "//net", | 93 "//net", |
| 93 "//net:test_support", | 94 "//net:test_support", |
| 94 "//testing/gmock", | 95 "//testing/gmock", |
| 95 "//testing/gtest", | 96 "//testing/gtest", |
| 96 ] | 97 ] |
| 97 } | 98 } |
| OLD | NEW |