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

Unified Diff: chrome/common/BUILD.gn

Issue 972083002: Report utility process JS memory in task manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-oop
Patch Set: Add comment. Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_utility.gypi ('k') | chrome/common/resource_usage_reporter.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/BUILD.gn
diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
index 4378b37ac538f257c0ed564562f1ebdb88cf6ea5..b38817572a02cb4a72c8dc790216f44ea4bcad16 100644
--- a/chrome/common/BUILD.gn
+++ b/chrome/common/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//tools/grit/grit_rule.gni")
+import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
gypi_values = exec_script("//build/gypi_to_gn.py",
[ rebase_path("../chrome_common.gypi") ],
@@ -84,6 +85,7 @@ static_library("common") {
} else {
# Non-iOS.
deps += [
+ ":mojo_bindings",
"//components/visitedlink/common",
"//components/autofill/content/common",
"//components/autofill/core/common",
@@ -95,6 +97,9 @@ static_library("common") {
"//third_party/re2",
"//third_party/widevine/cdm:version_h",
]
+ public_deps = [
+ "//third_party/mojo/src/mojo/public/cpp/bindings",
+ ]
}
if (enable_extensions) {
@@ -340,3 +345,9 @@ static_library("app_mode_app_support") {
"//base",
]
}
+
+mojom("mojo_bindings") {
+ sources = [
+ "resource_usage_reporter.mojom",
+ ]
+}
« no previous file with comments | « chrome/chrome_utility.gypi ('k') | chrome/common/resource_usage_reporter.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698