mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
45 lines
1001 B
Plaintext
45 lines
1001 B
Plaintext
|
# 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")
|
||
|
|
||
|
js_type_check("closure_compile") {
|
||
|
deps = [
|
||
|
":audio_player",
|
||
|
":control_panel",
|
||
|
":repeat_button",
|
||
|
":track_info_panel",
|
||
|
":track_list",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("audio_player") {
|
||
|
deps = [
|
||
|
":control_panel",
|
||
|
":track_info_panel",
|
||
|
":track_list",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("control_panel") {
|
||
|
deps = [
|
||
|
":repeat_button",
|
||
|
"//third_party/polymer/v1_0/components-chromium/paper-slider:paper-slider-extracted",
|
||
|
"//ui/webui/resources/js:assert",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("repeat_button") {
|
||
|
deps = [
|
||
|
"//third_party/polymer/v1_0/components-chromium/iron-behaviors:iron-button-state-extracted",
|
||
|
"//third_party/polymer/v1_0/components-chromium/iron-behaviors:iron-control-state-extracted",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("track_info_panel") {
|
||
|
}
|
||
|
|
||
|
js_library("track_list") {
|
||
|
}
|