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