OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 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 import("//third_party/closure_compiler/compile_js2.gni") | |
5 | |
6 compile_js("compile_util") { | |
Dan Beam
2016/09/06 16:46:46
why are we prefixing with compile_ everywhere? wh
aberent
2016/09/06 17:30:22
The issue is that one can't have multiple BUILD.gn
| |
7 source_files = [ "util.js" ] | |
8 } | |
9 | |
10 compile_js("compile_jsevalcontext") { | |
11 source_files = [ "jsevalcontext.js" ] | |
12 deps = [ | |
13 ":compile_util", | |
14 ] | |
15 } | |
16 | |
17 compile_js("compile_jstemplate") { | |
18 source_files = [ "jstemplate.js" ] | |
19 deps = [ | |
20 ":compile_jsevalcontext", | |
21 ] | |
22 } | |
OLD | NEW |