summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-08-01 12:33:33 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-08-01 12:33:35 +0200
commita622bde9e62aec58793f08d804783515cb5e735e (patch)
tree6ec1f05a4290278707c87635b64c9caf5a5a2314 /Makefile
parent1ef1be376c1e64d00bd61e746de5315d54c38315 (diff)
downloadandroid-node-v8-a622bde9e62aec58793f08d804783515cb5e735e.tar.gz
android-node-v8-a622bde9e62aec58793f08d804783515cb5e735e.tar.bz2
android-node-v8-a622bde9e62aec58793f08d804783515cb5e735e.zip
cpplint: exclude src/node_win32_perfctr_provider.cc
It's forced to violate the build/include_order rule because it includes a header file generated with ctrpp.exe that doesn't include perflib.h itself.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1d01544b23..32ebc785a2 100644
--- a/Makefile
+++ b/Makefile
@@ -390,11 +390,13 @@ jslint:
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
CPPLINT_EXCLUDE ?=
-CPPLINT_EXCLUDE += src/tree.h
+CPPLINT_EXCLUDE += src/node_dtrace.cc
+CPPLINT_EXCLUDE += src/node_dtrace.cc
+CPPLINT_EXCLUDE += src/node_root_certs.h
+CPPLINT_EXCLUDE += src/node_win32_perfctr_provider.cc
CPPLINT_EXCLUDE += src/queue.h
+CPPLINT_EXCLUDE += src/tree.h
CPPLINT_EXCLUDE += src/v8abbr.h
-CPPLINT_EXCLUDE += src/node_root_certs.h
-CPPLINT_EXCLUDE += src/node_dtrace.cc
CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard src/*.cc src/*.h src/*.c))