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

Unified Diff: ios/web/js_compile_bundle.gypi

Issue 1049703004: Upstream web js bundle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added compile_javascript variable to js_compile.gypi. Created 5 years, 9 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 | « ios/web/js_compile.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/js_compile_bundle.gypi
diff --git a/ios/web/js_compile_bundle.gypi b/ios/web/js_compile_bundle.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..fec6cd21e4b199cb7ab9b72b928ace0724041740
--- /dev/null
+++ b/ios/web/js_compile_bundle.gypi
@@ -0,0 +1,57 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This file is meant to be included into a target to provide a rule
+# to build JavaScript bundles using closure compiler.
+#
+# To use this, create a gyp target with the following form:
+# {
+# 'target_name': 'my_js_target',
+# 'type': 'none',
+# 'variables': {
+# 'closure_entry_point': 'name of the closure module',
+# 'js_bundle_files': ['path/to/dependency/file',],
+# },
+# 'includes': ['path/to/this/gypi/file'],
+# }
+#
+# Required variables:
+# closure_entry_point - name of the entry point closure module.
+# js_bundle_files - list of js files to build a bundle.
+
+{
+ 'variables': {
+ 'closure_compiler_path': '<(DEPTH)/third_party/closure_compiler/compiler/compiler.jar',
+ },
+ 'rules': [
+ {
+ 'rule_name': 'jsbundlecompilation',
+ 'extension': 'js',
+ 'inputs': [
+ '<(closure_compiler_path)',
+ '<@(js_bundle_files)',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/<(RULE_INPUT_NAME)',
+ ],
+ 'action': [
+ 'java',
+ '-jar',
+ '<(closure_compiler_path)',
+ '--compilation_level',
+ 'SIMPLE_OPTIMIZATIONS',
+ # Pass every js file to closure compiler. --only_closure_dependencies
+ # flag ensures that unnecessary files will not be compiled into the
+ # final output file.
+ '--js',
+ '<@(js_bundle_files)',
+ '--js_output_file',
+ '<@(_outputs)',
+ '--only_closure_dependencies',
+ '--closure_entry_point=<(closure_entry_point)',
+ ],
+ 'message': 'Building <(RULE_INPUT_NAME) JavaScript bundle',
+ } # rule_name: jsbundlecompilation
+ ]
+}
« no previous file with comments | « ios/web/js_compile.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698