blob: 1fa92abd76e66a1c7f3a44da4f5d8e7b70ba8a02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 2018 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.
import("//third_party/closure_compiler/compile_js.gni")
group("closure_compile") {
deps = [
"js:closure_compile",
"js:closure_compile_modules",
]
if (!is_android) {
deps += [
"cr_components:closure_compile",
"cr_elements:closure_compile",
]
}
}
group("modulize") {
public_deps = [
"js:modulize",
"js/cr:modulize",
"js/cr/ui:modulize",
]
if (!is_android) {
public_deps += [
"cr_components:polymer3_elements",
"cr_elements:polymer3_elements",
]
}
}
|