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

Side by Side Diff: chrome/common/BUILD.gn

Issue 1762603002: Switch components/password_manager code from IPC messages to Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Impl done, unit_tests and browser_tests not ready yet Created 4 years, 9 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("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//chrome/common/features.gni") 6 import("//chrome/common/features.gni")
7 import("//chrome/version.gni") 7 import("//chrome/version.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "resource_usage_reporter_type_converters.cc", 130 "resource_usage_reporter_type_converters.cc",
131 "resource_usage_reporter_type_converters.h", 131 "resource_usage_reporter_type_converters.h",
132 ] 132 ]
133 } else { 133 } else {
134 # Non-iOS. 134 # Non-iOS.
135 public_deps += [ 135 public_deps += [
136 ":mojo_bindings", 136 ":mojo_bindings",
137 "//chrome/common/net", 137 "//chrome/common/net",
138 "//components/autofill/content/common", 138 "//components/autofill/content/common",
139 "//components/autofill/core/common", 139 "//components/autofill/core/common",
140 "//components/password_manager/content/common",
141 "//components/password_manager/core/common", 140 "//components/password_manager/core/common",
142 "//components/signin/core/common", 141 "//components/signin/core/common",
143 "//components/translate/content/common", 142 "//components/translate/content/common",
144 "//components/visitedlink/common", 143 "//components/visitedlink/common",
145 "//ipc", 144 "//ipc",
146 "//media", 145 "//media",
147 "//mojo/public/cpp/bindings", 146 "//mojo/public/cpp/bindings",
148 "//third_party/re2", 147 "//third_party/re2",
149 "//third_party/widevine/cdm:version_h", 148 "//third_party/widevine/cdm:version_h",
150 ] 149 ]
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 ":constants", 395 ":constants",
397 "//base", 396 "//base",
398 ] 397 ]
399 } 398 }
400 399
401 mojom("mojo_bindings") { 400 mojom("mojo_bindings") {
402 sources = [ 401 sources = [
403 "resource_usage_reporter.mojom", 402 "resource_usage_reporter.mojom",
404 ] 403 ]
405 } 404 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698