| # 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("../../../all_devtools_files.gni") |
| import("../../../scripts/build/ninja/copy.gni") |
| |
| lighthouse_sources = lighthouse_locale_files + [ |
| "lighthouse-tsconfig.json", |
| "report-assets/report.js", |
| "report-assets/report.d.ts", |
| "report-assets/report-generator.js", |
| "report-assets/report-generator.d.ts", |
| "lighthouse-dt-bundle.js", |
| "lighthouse-dt-bundle.d.ts", |
| ] |
| |
| group("lighthouse") { |
| public_deps = [ |
| ":lighthouse-gen", |
| ":lighthouse-resources", |
| ] |
| } |
| |
| copy_sources_to_resources("lighthouse-resources") { |
| sources = lighthouse_sources |
| } |
| |
| copy_to_gen("lighthouse-gen") { |
| sources = lighthouse_sources |
| } |