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
35
36
37
38
39
40
41
42
43
44
|
# 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 = [
":cr_elements_resources",
"chromeos/cr_picture:closure_compile",
"chromeos/network:closure_compile",
"cr_action_menu:closure_compile",
"cr_checkbox:closure_compile",
"cr_dialog:closure_compile",
"cr_drawer:closure_compile",
"cr_expand_button:closure_compile",
"cr_input:closure_compile",
"cr_link_row:closure_compile",
"cr_profile_avatar_selector:closure_compile",
"cr_radio_button:closure_compile",
"cr_searchable_drop_down:closure_compile",
"cr_slider:closure_compile",
"cr_toast:closure_compile",
"cr_toggle:closure_compile",
"cr_view_manager:closure_compile",
"policy:closure_compile",
]
}
js_type_check("cr_elements_resources") {
deps = [
":cr_container_shadow_behavior",
":cr_scrollable_behavior",
]
}
js_library("cr_scrollable_behavior") {
deps = [
"//third_party/polymer/v1_0/components-chromium/iron-list:iron-list-extracted",
]
}
js_library("cr_container_shadow_behavior") {
}
|