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

Unified Diff: editor/tools/compile_analyzer.py

Issue 12262040: Add support for building the new analyzer using gyp. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
Index: editor/tools/compile_analyzer.py
===================================================================
--- editor/tools/compile_analyzer.py (revision 0)
+++ editor/tools/compile_analyzer.py (revision 0)
@@ -0,0 +1,29 @@
+#!/usr/bin/env python
+# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+#
+# Script to compile the analyzer.
+#
+# Usage: compile_analyzer.py output_dir class_path files
+#
+
+import sys
+import subprocess
+
+def main():
+ cmd = ['javac',
+ '-sourcepath', 'foobar',
+ '-source', '6',
+ '-target', '6',
+ '-implicit:none',
+ '-d', sys.argv[1],
+ '-cp', sys.argv[2],
+ ]
+ # Add all the source files.
+ cmd.extend(sys.argv[3:])
+ subprocess.call(cmd)
+
+
+if __name__=='__main__':
+ main()

Powered by Google App Engine
This is Rietveld 408576698