Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: test/test262/BUILD.gn

Issue 2034713005: [gn] Port test262 archiving to gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 the V8 project 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("../../gni/isolate.gni")
6
7 if (v8_test_isolation_mode != "noop") {
Michael Achenbach 2016/06/06 08:32:10 This ports: https://cs.chromium.org/chromium/src/v
8 action("archive_test262") {
9 visibility = [ ":*" ]
10
11 script = "archive.py"
12
13 inputs = [
14 "list.py",
15 ]
16
17 sources = exec_script("list.py", [], "list lines")
18
19 outputs = [
20 "$target_gen_dir/test262_archiving.stamp",
21 ]
22
23 args = rebase_path(outputs, root_build_dir)
24 }
25 }
26
27 v8_isolate_run("test262") {
28 deps = [
29 ":archive_test262",
30 "../..:d8_run",
31 ]
32
33 isolate = "test262.isolate"
34 }
OLDNEW
« no previous file with comments | « test/BUILD.gn ('k') | test/test262/archive.py » ('j') | test/test262/archive.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698