| 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ] | 94 ] |
| 95 | 95 |
| 96 deps = [ | 96 deps = [ |
| 97 ":proto", | 97 ":proto", |
| 98 "//base", | 98 "//base", |
| 99 "//components/autofill/core/common", | 99 "//components/autofill/core/common", |
| 100 "//components/keyed_service/core", | 100 "//components/keyed_service/core", |
| 101 "//components/os_crypt", | 101 "//components/os_crypt", |
| 102 "//components/password_manager/core/common", | 102 "//components/password_manager/core/common", |
| 103 "//components/strings", | 103 "//components/strings", |
| 104 "//components/url_formatter", | |
| 105 "//net", | 104 "//net", |
| 106 "//sql", | 105 "//sql", |
| 107 "//sync", | 106 "//sync", |
| 108 "//third_party/protobuf:protobuf_lite", | 107 "//third_party/protobuf:protobuf_lite", |
| 109 "//third_party/re2", | 108 "//third_party/re2", |
| 110 "//url", | 109 "//url", |
| 111 ] | 110 ] |
| 112 | 111 |
| 113 if (is_mac) { | 112 if (is_mac) { |
| 114 # TODO(blundell): Provide the iOS login DB implementation and then | 113 # TODO(blundell): Provide the iOS login DB implementation and then |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 public_deps = [ | 149 public_deps = [ |
| 151 ":browser", | 150 ":browser", |
| 152 ] | 151 ] |
| 153 deps = [ | 152 deps = [ |
| 154 "//base", | 153 "//base", |
| 155 "//components/autofill/core/common", | 154 "//components/autofill/core/common", |
| 156 "//testing/gmock", | 155 "//testing/gmock", |
| 157 "//testing/gtest", | 156 "//testing/gtest", |
| 158 ] | 157 ] |
| 159 } | 158 } |
| OLD | NEW |