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

Side by Side Diff: third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java

Issue 2629323002: Remove Chromium's custom closure runner. (Closed)
Patch Set: merge Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 package com.google.javascript.jscomp;
6
7 import java.util.List;
8
9 public class ChromePassConfig extends PassConfig.PassConfigDelegate {
10 public ChromePassConfig(CompilerOptions options) {
11 super(new DefaultPassConfig(options));
12 }
13
14 @Override
15 protected List<PassFactory> getChecks() {
16 List<PassFactory> checks = super.getChecks();
17 checks.add(0, chromePass);
18 return checks;
19 }
20
21 final static PassFactory chromePass = new PassFactory("chromePass", true) {
22 @Override
23 protected CompilerPass create(AbstractCompiler compiler) {
24 return new ChromePass(compiler);
25 }
26 };
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698