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

Unified Diff: chrome/renderer/BUILD.gn

Issue 1081323003: Convert renderer JS memory usage reporting to use Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@utility-process-report-js-memory
Patch Set: Fix build files. 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
Index: chrome/renderer/BUILD.gn
diff --git a/chrome/renderer/BUILD.gn b/chrome/renderer/BUILD.gn
index 2fe4a66cc44399616174e562b7f943e57173394c..d33cd73dd515f12816315a496fe0dd388133de9c 100644
--- a/chrome/renderer/BUILD.gn
+++ b/chrome/renderer/BUILD.gn
@@ -32,6 +32,7 @@ static_library("renderer") {
deps = [
"//base/allocator",
"//chrome/common",
+ "//chrome/common:mojo_bindings",
"//chrome/common/net",
"//chrome:resources",
"//chrome:strings",
@@ -87,14 +88,14 @@ static_library("renderer") {
}
if (safe_browsing_mode != 0) {
- sources += rebase_path(gypi_values.chrome_renderer_basic_safe_browsing_sources,
- ".",
- "..")
+ sources +=
+ rebase_path(gypi_values.chrome_renderer_basic_safe_browsing_sources,
+ ".",
+ "..")
if (safe_browsing_mode == 1) {
- sources +=
- rebase_path(gypi_values.chrome_renderer_safe_browsing_sources,
- ".",
- "..")
+ sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources,
+ ".",
+ "..")
deps += [
"//chrome/common/safe_browsing:proto",
"//third_party/smhasher:murmurhash3",

Powered by Google App Engine
This is Rietveld 408576698