Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
build: [gn] remove node_use_perfctr
Browse files Browse the repository at this point in the history
  • Loading branch information
deepak1556 committed Dec 10, 2018
1 parent 10a72d9 commit e43c403
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ declare_args() {
# Build with ETW support.
node_use_etw = false

# Build with performance counters.
node_use_perfctr = false

# Build JavaScript in lib/ with DCHECK macros.
node_debug_lib = false

Expand All @@ -44,7 +41,6 @@ declare_args() {

assert(!node_use_dtrace, "node_use_dtrace not supported in GN")
assert(!node_use_etw, "node_use_etw not supported in GN")
assert(!node_use_perfctr, "node_use_perfctr not supported in GN")

assert(!node_enable_inspector || node_use_openssl,
"node_enable_inspector requires node_use_openssl")
Expand Down Expand Up @@ -81,9 +77,6 @@ chdir_action("node_js2c") {
if (!node_use_dtrace && !node_use_etw) {
macro_inputs += [ "src/notrace_macros.py" ]
}
if (!node_use_perfctr) {
macro_inputs += [ "src/noperfctr_macros.py" ]
}
if (node_debug_lib) {
macro_inputs += [ "tools/nodcheck_macros.py" ]
} else {
Expand Down

0 comments on commit e43c403

Please sign in to comment.