| # Copyright 2020 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") { |
| testonly = true |
| deps = [ |
| ":remote_call", |
| ":test_util", |
| "//ui/file_manager/base/js:volume_manager_types", |
| ] |
| } |
| |
| js_library("remote_call") { |
| testonly = true |
| deps = [ |
| ":test_util", |
| "//ui/file_manager/file_manager/background/js:runtime_loaded_test_util", |
| ] |
| externs_list = [ "$externs_path/command_line_private.js" ] |
| } |
| |
| js_library("test_util") { |
| testonly = true |
| externs_list = [ |
| "$externs_path/chrome_extensions.js", |
| "//ui/file_manager/externs/chrome_test.js", |
| ] |
| } |