blob: c294aeea41daf6314c406d7198b795270044f480 [file] [log] [blame]
Luciano Pachecod4a896072020-01-14 11:07:501# Copyright 2020 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
5import("//third_party/closure_compiler/compile_js.gni")
6
7js_type_check("closure_compile") {
8 testonly = true
9 deps = [
10 ":remote_call",
11 ":test_util",
12 "//ui/file_manager/base/js:volume_manager_types",
13 ]
14}
15
16js_library("remote_call") {
17 testonly = true
Luciano Pacheco7ba05772020-02-11 04:49:5418 deps = [
19 ":test_util",
20 "//ui/file_manager/file_manager/background/js:runtime_loaded_test_util",
21 ]
Luciano Pachecod4a896072020-01-14 11:07:5022 externs_list = [ "$externs_path/command_line_private.js" ]
23}
24
25js_library("test_util") {
26 testonly = true
27 externs_list = [
28 "$externs_path/chrome_extensions.js",
dpapade1a0bd22020-06-16 04:22:3229 "$externs_path/test.js",
Luciano Pachecod4a896072020-01-14 11:07:5030 ]
31}