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

Side by Side Diff: third_party/closure_compiler/compile_js.gypi

Issue 1062653002: Fix some issues when building Closure runner.jar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | third_party/closure_compiler/externs/chrome_extensions.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'type': 'none', 5 'type': 'none',
6 'variables': { 6 'variables': {
7 'CLOSURE_DIR': '<(DEPTH)/third_party/closure_compiler', 7 'CLOSURE_DIR': '<(DEPTH)/third_party/closure_compiler',
8 }, 8 },
9 'actions': [ 9 'actions': [
10 { 10 {
(...skipping 20 matching lines...) Expand all
31 'outputs': [ 31 'outputs': [
32 '<(out_file)', 32 '<(out_file)',
33 ], 33 ],
34 'action': [ 34 'action': [
35 'python', 35 'python',
36 '<(CLOSURE_DIR)/checker.py', 36 '<(CLOSURE_DIR)/checker.py',
37 '<(source_file)', 37 '<(source_file)',
38 '--depends', '<@(depends)', 38 '--depends', '<@(depends)',
39 '--externs', '<@(externs)', 39 '--externs', '<@(externs)',
40 '--out_file', '<(out_file)', 40 '--out_file', '<(out_file)',
41 # Add '--verbose', for glorious log spam. 41 # Add '--verbose' for make glorious log spam of Closure compiler.
42 ], 42 ],
43 'message': 'Compiling <(source_file)', 43 'message': 'Compiling <(source_file)',
44 } 44 }
45 ], 45 ],
46 } 46 }
OLDNEW
« no previous file with comments | « no previous file | third_party/closure_compiler/externs/chrome_extensions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698