Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: components/password_manager/core/browser/BUILD.gn

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android checkdeps Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
104 "//net", 105 "//net",
105 "//sql", 106 "//sql",
106 "//sync", 107 "//sync",
107 "//third_party/protobuf:protobuf_lite", 108 "//third_party/protobuf:protobuf_lite",
108 "//third_party/re2", 109 "//third_party/re2",
109 "//url", 110 "//url",
110 ] 111 ]
111 112
112 if (is_mac) { 113 if (is_mac) {
113 # TODO(blundell): Provide the iOS login DB implementation and then 114 # TODO(blundell): Provide the iOS login DB implementation and then
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 public_deps = [ 150 public_deps = [
150 ":browser", 151 ":browser",
151 ] 152 ]
152 deps = [ 153 deps = [
153 "//base", 154 "//base",
154 "//components/autofill/core/common", 155 "//components/autofill/core/common",
155 "//testing/gmock", 156 "//testing/gmock",
156 "//testing/gtest", 157 "//testing/gtest",
157 ] 158 ]
158 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698