| 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 public_deps = [ | 41 public_deps = [ |
| 42 "//skia", | 42 "//skia", |
| 43 ] | 43 ] |
| 44 deps = [ | 44 deps = [ |
| 45 ":risk_proto", | 45 ":risk_proto", |
| 46 "//base", | 46 "//base", |
| 47 "//base:i18n", | 47 "//base:i18n", |
| 48 "//base:prefs", | 48 "//base:prefs", |
| 49 "//components/autofill/content/common", | 49 "//components/autofill/content/common", |
| 50 "//components/autofill/core/browser", | 50 "//components/autofill/core/browser", |
| 51 "//components/autofill/core/browser:regexes", | |
| 52 "//components/autofill/core/common", | 51 "//components/autofill/core/common", |
| 53 "//components/os_crypt", | 52 "//components/os_crypt", |
| 54 "//components/resources", | 53 "//components/resources", |
| 55 "//components/strings", | 54 "//components/strings", |
| 56 "//components/user_prefs", | 55 "//components/user_prefs", |
| 57 "//components/webdata/common", | 56 "//components/webdata/common", |
| 58 "//content/public/browser", | 57 "//content/public/browser", |
| 59 "//content/public/common", | 58 "//content/public/common", |
| 60 "//google_apis", | 59 "//google_apis", |
| 61 "//gpu/config", | 60 "//gpu/config", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "//content/public/common", | 120 "//content/public/common", |
| 122 "//content/test:test_support", | 121 "//content/test:test_support", |
| 123 "//google_apis", | 122 "//google_apis", |
| 124 "//ipc:test_support", | 123 "//ipc:test_support", |
| 125 "//net", | 124 "//net", |
| 126 "//net:test_support", | 125 "//net:test_support", |
| 127 "//testing/gmock", | 126 "//testing/gmock", |
| 128 "//testing/gtest", | 127 "//testing/gtest", |
| 129 ] | 128 ] |
| 130 } | 129 } |
| OLD | NEW |