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

Unified Diff: chrome/browser/profiling_host/BUILD.gn

Issue 2948283002: Profiling process topology (Closed)
Patch Set: Review comments Created 3 years, 6 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/browser/chrome_content_browser_client.cc ('k') | chrome/browser/profiling_host/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiling_host/BUILD.gn
diff --git a/chrome/browser/profiling_host/BUILD.gn b/chrome/browser/profiling_host/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8d5fa33b98683829ac636d6780441afd42163403
--- /dev/null
+++ b/chrome/browser/profiling_host/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2017 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.
+
+import("//chrome/common/features.gni")
+
+if (enable_oop_heap_profiling) {
+ static_library("profiling_host") {
+ sources = [
+ "profiling_process_host.cc",
+ "profiling_process_host.h",
+ ]
+
+ deps = [
+ "//base",
+ "//chrome/common",
+ "//content/public/common",
+ ]
+ }
+} else {
+ # Dummy group so this target can be unconditionally depended on.
+ group("profiling_host") {
+ }
+}
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/profiling_host/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698