Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / build / check_gyp.py
index a27e1b4..2373543 100644 (file)
@@ -4,13 +4,9 @@
 
 import os
 
-from trace_viewer import trace_viewer_project
+from trace_viewer.build import check_common
 
 GYP_FILE = "trace_viewer.gyp"
-FILE_GROUPS = ["tracing_html_files",
-    "tracing_css_files",
-    "tracing_js_files",
-    "tracing_img_files"]
 
 def GypCheck():
   f = open(GYP_FILE, 'r')
@@ -18,51 +14,14 @@ def GypCheck():
   f.close()
 
   data = eval(gyp)
-  gyp_files = []
-  for group in FILE_GROUPS:
-    gyp_files.extend(map(os.path.normpath, data["variables"][group]))
+  listed_files = []
+  error = ""
+  for group in check_common.FILE_GROUPS:
+    filenames = map(os.path.normpath, data["variables"][group])
+    error += check_common.CheckListedFilesSorted(GYP_FILE, group, filenames)
+    listed_files.extend(filenames)
 
-  project = trace_viewer_project.TraceViewerProject()
-  known_files = []
-  build_dir = os.path.join(project.src_path, 'build')
-  def handle(dirpath, dirnames, filenames):
-    for name in filenames:
-      if not (name.endswith(("_test.js",
-                             "_test_data.js",
-                             "tests.html",
-                             ".py",
-                             ".pyc")) or
-         name.startswith((".")) or
-         dirpath == build_dir):
-        x = os.path.relpath(os.path.normpath(os.path.join(dirpath, name)),
-                            project.trace_viewer_path)
-        known_files.append(x)
-    if '.svn' in dirnames:
-      dirnames.remove('.svn')
+  return error + check_common.CheckCommon(GYP_FILE, listed_files)
 
-  for (dirpath, dirnames, filenames) in os.walk(project.src_path):
-    handle(dirpath, dirnames, filenames)
-
-  for (dirpath, dirnames, filenames) in os.walk(
-      os.path.join(project.tvcm_path, 'src')):
-    handle(dirpath, dirnames, filenames)
-
-  u = set(gyp_files).union(set(known_files))
-  i = set(gyp_files).intersection(set(known_files))
-  diff = list(u - i)
-
-  if len(diff) == 0:
-    return ''
-
-  error = 'Entries in ' + GYP_FILE + ' do not match files on disk:\n'
-  in_gyp_only = list(set(gyp_files) - set(known_files))
-  in_known_only = list(set(known_files) - set(gyp_files))
-
-  if len(in_gyp_only) > 0:
-    error += '  In GYP only:\n    ' + '\n    '.join(sorted(in_gyp_only))
-  if len(in_known_only) > 0:
-    if len(in_gyp_only) > 0:
-      error += '\n\n'
-    error += '  On disk only:\n    ' + '\n    '.join(sorted(in_known_only))
-
-  return error
+if __name__ == '__main__':
+  print GypCheck()