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

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

Issue 2941823002: Add flags and skeleton for profiling process. (Closed)
Patch Set: Fix header 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 unified diff | Download patch
« no previous file with comments | « chrome/common/features.gni ('k') | chrome/profiling/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//chrome/common/features.gni")
6
7 if (enable_oop_heap_profiling) {
8 static_library("profiling") {
9 sources = [
10 "profiling_main.cc",
11 "profiling_main.h",
12 ]
13
14 deps = [
15 "//base",
16 "//chrome/common",
17 ]
18 }
19 } else {
20 # Dummy target so this can be unconditionally depended on and header checking
21 # will work.
22 source_set("profiling") {
23 sources = [
24 "profiling_main.h",
25 ]
26 }
27 }
OLDNEW
« no previous file with comments | « chrome/common/features.gni ('k') | chrome/profiling/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698