| 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 14 matching lines...) Expand all  Loading... | 
|  25  |  25  | 
|  26   configs += [ "//components/autofill/core/browser:wallet_service" ] |  26   configs += [ "//components/autofill/core/browser:wallet_service" ] | 
|  27  |  27  | 
|  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     "//base:prefs", |  | 
|  36     "//components/autofill/content/common", |  35     "//components/autofill/content/common", | 
|  37     "//components/autofill/core/browser", |  36     "//components/autofill/core/browser", | 
|  38     "//components/autofill/core/common", |  37     "//components/autofill/core/common", | 
 |  38     "//components/prefs", | 
|  39     "//components/os_crypt", |  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", | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  88     "//content/test:test_support", |  88     "//content/test:test_support", | 
|  89     "//google_apis", |  89     "//google_apis", | 
|  90     "//google_apis:test_support", |  90     "//google_apis:test_support", | 
|  91     "//ipc:test_support", |  91     "//ipc:test_support", | 
|  92     "//net", |  92     "//net", | 
|  93     "//net:test_support", |  93     "//net:test_support", | 
|  94     "//testing/gmock", |  94     "//testing/gmock", | 
|  95     "//testing/gtest", |  95     "//testing/gtest", | 
|  96   ] |  96   ] | 
|  97 } |  97 } | 
| OLD | NEW |