File tree Expand file tree Collapse file tree 4 files changed +30
-4
lines changed
third-party/devtools-tests Expand file tree Collapse file tree 4 files changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,10 @@ rsync -avh "$lh_webtests_exp_dir" "$fe_webtests_exp_dir" --exclude="OWNERS" --de
84
84
# copy e2e tests
85
85
lh_e2e_dir=" third-party/devtools-tests/e2e/lighthouse/"
86
86
fe_e2e_dir=" $dt_dir /test/e2e/lighthouse"
87
- rsync -avh " $lh_e2e_dir " " $fe_e2e_dir " --exclude=" OWNERS" --exclude= " BUILD.gn " -- delete
87
+ rsync -avh " $lh_e2e_dir " " $fe_e2e_dir " --exclude=" OWNERS" --delete
88
88
lh_e2e_res_dir=" third-party/devtools-tests/e2e/resources/lighthouse/"
89
89
fe_e2e_res_dir=" $dt_dir /test/e2e/resources/lighthouse"
90
- rsync -avh " $lh_e2e_res_dir " " $fe_e2e_res_dir " --exclude=" OWNERS" --exclude= " BUILD.gn " -- delete
90
+ rsync -avh " $lh_e2e_res_dir " " $fe_e2e_res_dir " --exclude=" OWNERS" --delete
91
91
92
92
echo " "
93
93
echo " Done. To run the webtests: "
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ See `lighthouse-core/test/chromium-web-tests/README.md` for more.
9
9
## Sync
10
10
11
11
``` sh
12
- rsync -ahvz --exclude=' OWNERS' --exclude= ' BUILD.gn ' ~ /src/devtools/devtools-frontend/test/e2e/lighthouse/ third-party/devtools-tests/e2e/lighthouse/
13
- rsync -ahvz --exclude=' OWNERS' --exclude= ' BUILD.gn ' ~ /src/devtools/devtools-frontend/test/e2e/resources/lighthouse/ third-party/devtools-tests/e2e/resources/lighthouse/
12
+ rsync -ahvz --exclude=' OWNERS' ~ /src/devtools/devtools-frontend/test/e2e/lighthouse/ third-party/devtools-tests/e2e/lighthouse/
13
+ rsync -ahvz --exclude=' OWNERS' ~ /src/devtools/devtools-frontend/test/e2e/resources/lighthouse/ third-party/devtools-tests/e2e/resources/lighthouse/
14
14
```
Original file line number Diff line number Diff line change
1
+ # 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
+
5
+ import (" ../../../third_party/typescript/typescript.gni" )
6
+
7
+ node_ts_library (" lighthouse" ) {
8
+ sources = [
9
+ " generate-report_test.ts" ,
10
+ " indexeddb-warning_test.ts" ,
11
+ ]
12
+
13
+ deps = [
14
+ " ../../shared" ,
15
+ " ../helpers" ,
16
+ ]
17
+ }
Original file line number Diff line number Diff line change
1
+ # Copyright 2022 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 (" ../../../../scripts/build/ninja/copy.gni" )
6
+
7
+ copy_to_gen (" lighthouse" ) {
8
+ sources = [ " lighthouse-storage.html" ]
9
+ }
You can’t perform that action at this time.
0 commit comments