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

Side by Side Diff: remoting/remoting_webapp.gypi

Issue 803653004: Update Chromoting to use /third_party/closure_compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Define Entry for browser_tests Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # File included in remoting_webapp_* targets in remoting_client.gypi 5 # File included in remoting_webapp_* targets in remoting_client.gypi
6 6
7 { 7 {
8 'type': 'none', 8 'type': 'none',
9 'variables': { 9 'variables': {
10 'extra_files%': [], 10 'extra_files%': [],
(...skipping 16 matching lines...) Expand all
27 { 27 {
28 'action_name': 'Verify remoting webapp', 28 'action_name': 'Verify remoting webapp',
29 'inputs': [ 29 'inputs': [
30 '<@(remoting_webapp_crd_js_files)', 30 '<@(remoting_webapp_crd_js_files)',
31 '<@(remoting_webapp_js_proto_files)', 31 '<@(remoting_webapp_js_proto_files)',
32 ], 32 ],
33 'outputs': [ 33 'outputs': [
34 '<(success_stamp)', 34 '<(success_stamp)',
35 ], 35 ],
36 'action': [ 36 'action': [
37 'python', 'tools/jscompile.py', 37 'python', '../third_party/closure_compiler/checker.py',
38 '--strict',
39 '--no-single-file',
40 '--success-stamp', '<(success_stamp)',
38 '<@(remoting_webapp_crd_js_files)', 41 '<@(remoting_webapp_crd_js_files)',
39 '<@(remoting_webapp_js_proto_files)', 42 '<@(remoting_webapp_js_proto_files)',
40 '--success-stamp', '<(success_stamp)'
41 ], 43 ],
42 }, 44 },
43 ], # actions 45 ], # actions
44 }], 46 }],
45 ], 47 ],
46 'actions': [ 48 'actions': [
47 { 49 {
48 'action_name': 'Build Remoting WebApp', 50 'action_name': 'Build Remoting WebApp',
49 'inputs': [ 51 'inputs': [
50 'webapp/build-webapp.py', 52 'webapp/build-webapp.py',
(...skipping 18 matching lines...) Expand all
69 'webapp/crd/manifest.json.jinja2', 71 'webapp/crd/manifest.json.jinja2',
70 '<(webapp_type)', 72 '<(webapp_type)',
71 '<@(generated_html_files)', 73 '<@(generated_html_files)',
72 '<@(remoting_webapp_crd_files)', 74 '<@(remoting_webapp_crd_files)',
73 '<@(extra_files)', 75 '<@(extra_files)',
74 '--locales', '<@(remoting_webapp_locale_files)', 76 '--locales', '<@(remoting_webapp_locale_files)',
75 ], 77 ],
76 }, 78 },
77 ], 79 ],
78 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698