Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / chromite / cros / commands / cros_lint.py
index b03485a..ac9bbcc 100644 (file)
@@ -78,9 +78,7 @@ def _GetPythonPath(paths):
 
 def _CpplintFiles(files, debug):
   """Returns true if cpplint ran successfully on all files."""
-  # TODO(sosa): Do not filter include_order once C++ system header issues
-  # are resolved.
-  cmd = ['cpplint.py', '--filter=-build/include_order'] + files
+  cmd = ['cpplint.py'] + files
   res = cros_build_lib.RunCommand(cmd,
                                   error_code_ok=True,
                                   print_cmd=debug)