OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 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 |
| 5 import("//third_party/closure_compiler/compile_js2.gni") |
| 6 |
| 7 compile_js(compile_network_ui) { |
| 8 source_files = [ "network_ui.js" ] |
| 9 deps = [ |
| 10 "//ui/webui/resources/cr_elements/network:compile_cr_network_icon_externs", |
| 11 "//ui/webui/resources/cr_elements/network:compile_cr_onc_types", |
| 12 "//ui/webui/resources/js:compile_util", |
| 13 "//ui/webui/resources/js/compiled:compile_load_time_data", |
| 14 ] |
| 15 externs = [ "networking_private" ] |
| 16 } |
OLD | NEW |