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

Unified Diff: tools/presubmit.py

Issue 2292573002: [inspector] Initial import of v8_inspector. (Closed)
Patch Set: format the code, disable cpplint Created 4 years, 3 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 | « src/inspector/public/V8StackTrace.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/presubmit.py
diff --git a/tools/presubmit.py b/tools/presubmit.py
index d503538fcba70e27ca919a762f29f6ed08c4406e..3c483f1937e860ad032481c221198a6e5a740cb7 100755
--- a/tools/presubmit.py
+++ b/tools/presubmit.py
@@ -192,8 +192,9 @@ class CppLintProcessor(SourceFileProcessor):
return name.endswith('.cc') or name.endswith('.h')
def IgnoreDir(self, name):
+ # TODO(dgozman): remove inspector after fixing the issues.
return (super(CppLintProcessor, self).IgnoreDir(name)
- or (name == 'third_party'))
+ or (name == 'third_party') or (name == 'inspector'))
IGNORE_LINT = ['flag-definitions.h']
@@ -299,9 +300,15 @@ class SourceProcessor(SourceFileProcessor):
'corrections.js',
'crypto.js',
'daemon.py',
+ 'DebuggerScript.js',
'earley-boyer.js',
'fannkuch.js',
'fasta.js',
+ 'InjectedScript.cpp',
+ 'InjectedScript.h',
+ 'InjectedScriptSource.js',
+ 'JavaScriptCallFrame.cpp',
+ 'JavaScriptCallFrame.h',
'jsmin.py',
'libraries.cc',
'libraries-empty.cc',
@@ -311,10 +318,19 @@ class SourceProcessor(SourceFileProcessor):
'primes.js',
'raytrace.js',
'regexp-pcre.js',
+ 'rjsmin.py',
+ 'ScriptBreakpoint.h',
'sqlite.js',
'sqlite-change-heap.js',
'sqlite-pointer-masking.js',
'sqlite-safe-heap.js',
+ 'V8DebuggerScript.h',
+ 'V8FunctionCall.cpp',
+ 'V8FunctionCall.h',
+ 'V8InspectorImpl.cpp',
+ 'V8InspectorImpl.h',
+ 'V8RuntimeAgentImpl.cpp',
+ 'V8RuntimeAgentImpl.h',
'gnuplot-4.6.3-emscripten.js',
'zlib.js']
IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js']
« no previous file with comments | « src/inspector/public/V8StackTrace.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698