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

Unified Diff: remoting/app_remoting_webapp_compile.gypi

Issue 1152583011: Refactor compile_js.gypi to support script_args and closure_args (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: app_remoting_webapp gyp stuff Created 5 years, 6 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: remoting/app_remoting_webapp_compile.gypi
diff --git a/remoting/app_remoting_webapp_compile.gypi b/remoting/app_remoting_webapp_compile.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..4cc36d9f2aa02ccd1217cf5a28ff2379e3d4feb7
--- /dev/null
+++ b/remoting/app_remoting_webapp_compile.gypi
@@ -0,0 +1,45 @@
+# 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.
+
+{
+ 'includes': [
+ '../remoting/remoting_webapp_files.gypi',
+ '../remoting/app_remoting_webapp_files.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'verify_main.html',
Theresa 2015/06/12 20:36:51 Previously, the action name had >(ar_app_name) in
garykac 2015/06/16 00:32:42 It's OK to drop that. We had that because we were
Theresa 2015/06/16 17:49:45 Acknowledged.
+ 'variables': {
+ 'source_files': [
+ '<@(ar_main_js_files)',
+ '<@(remoting_webapp_js_proto_files)',
+ ],
+ 'out_file': '<(PRODUCT_DIR)/>(_target_name)_main_jscompile.stamp',
+ },
+ 'includes': ['compile_js.gypi'],
+ },
+ {
+ 'target_name': 'verify_background.js',
+ 'variables': {
+ 'source_files': [
+ '<@(ar_background_js_files)',
+ '<@(remoting_webapp_js_proto_files)',
+ ],
+ 'out_file': '<(PRODUCT_DIR)/>(_target_name)_background_jscompile.stamp',
+ },
+ 'includes': ['compile_js.gypi'],
+ },
+ {
+ 'target_name': 'verify_feedback_consent.html',
+ 'variables': {
+ 'source_files': [
+ '<@(ar_feedback_consent_html_all_js_files)',
+ '<@(remoting_webapp_js_proto_files)',
+ ],
+ 'out_file': '<(PRODUCT_DIR)/>(_target_name)_feedback_consent_jscompile.stamp',
+ },
+ 'includes': ['compile_js.gypi'],
+ },
+ ], # targets
+}

Powered by Google App Engine
This is Rietveld 408576698