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

Side by Side Diff: gypfiles/isolate.gypi

Issue 1848553003: [gn] Move build to gypfiles (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Preserve old state for the dance Created 4 years, 7 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
« no previous file with comments | « gypfiles/has_valgrind.py ('k') | gypfiles/landmine_utils.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 the V8 project authors. All rights reserved. 1 # Copyright 2015 the V8 project authors. All rights reserved.
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This file is meant to be included into a target to provide a rule 6 # This file is meant to be included into a target to provide a rule
7 # to "build" .isolate files into a .isolated file. 7 # to "build" .isolate files into a .isolated file.
8 # 8 #
9 # To use this, create a gyp target with the following form: 9 # To use this, create a gyp target with the following form:
10 # 'conditions': [ 10 # 'conditions': [
11 # ['test_isolation_mode != "noop"', { 11 # ['test_isolation_mode != "noop"', {
12 # 'targets': [ 12 # 'targets': [
13 # { 13 # {
14 # 'target_name': 'foo_test_run', 14 # 'target_name': 'foo_test_run',
15 # 'type': 'none', 15 # 'type': 'none',
16 # 'dependencies': [ 16 # 'dependencies': [
17 # 'foo_test', 17 # 'foo_test',
18 # ], 18 # ],
19 # 'includes': [ 19 # 'includes': [
20 # '../build/isolate.gypi', 20 # '../gypfiles/isolate.gypi',
21 # ], 21 # ],
22 # 'sources': [ 22 # 'sources': [
23 # 'foo_test.isolate', 23 # 'foo_test.isolate',
24 # ], 24 # ],
25 # }, 25 # },
26 # ], 26 # ],
27 # }], 27 # }],
28 # ], 28 # ],
29 # 29 #
30 # Note: foo_test.isolate is included and a source file. It is an inherent 30 # Note: foo_test.isolate is included and a source file. It is an inherent
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 ], 91 ],
92 }, { 92 }, {
93 'action': [ 93 'action': [
94 '--config-variable', 'msvs_version=0', 94 '--config-variable', 'msvs_version=0',
95 ], 95 ],
96 }], 96 }],
97 ], 97 ],
98 }, 98 },
99 ], 99 ],
100 } 100 }
OLDNEW
« no previous file with comments | « gypfiles/has_valgrind.py ('k') | gypfiles/landmine_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698