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

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

Issue 2941823002: Add flags and skeleton for profiling process. (Closed)
Patch Set: Fix header checking 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
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

Powered by Google App Engine
This is Rietveld 408576698