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

Unified Diff: chrome/renderer/leak_detector/BUILD.gn

Issue 2064463002: Mojo interface/service for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update ProtobufToMojoConverterTest Created 4 years, 5 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/renderer/DEPS ('k') | chrome/renderer/leak_detector/leak_detector_remote_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/leak_detector/BUILD.gn
diff --git a/chrome/renderer/leak_detector/BUILD.gn b/chrome/renderer/leak_detector/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..4735609a594c7c4e8438f64c65c92b798f30fa35
--- /dev/null
+++ b/chrome/renderer/leak_detector/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+if (is_chromeos) {
+ # GYP version: chrome/chrome_renderer.gypi:chrome_renderer_leak_detector_sources
+ source_set("leak_detector") {
+ sources = [
+ "leak_detector_remote_client.cc",
+ "leak_detector_remote_client.h",
+ ]
+ deps = [
+ "//components/metrics/leak_detector:interfaces",
+ "//components/metrics/leak_detector:leak_detector",
+ "//components/metrics/proto:proto",
+ ]
+ }
+}
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/leak_detector/leak_detector_remote_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698