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

Side by Side Diff: build/all.gyp

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 | « build/README.txt ('k') | build/config/win/msvs_dependencies.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2011 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 {
6 'targets': [
7 {
8 'target_name': 'All',
9 'type': 'none',
10 'dependencies': [
11 '../src/d8.gyp:d8',
12 ],
13 'conditions': [
14 ['component!="shared_library"', {
15 'dependencies': [
16 '../tools/parser-shell.gyp:parser-shell',
17 ],
18 }],
19 # These items don't compile for Android on Mac.
20 ['host_os!="mac" or OS!="android"', {
21 'dependencies': [
22 '../samples/samples.gyp:*',
23 '../test/cctest/cctest.gyp:*',
24 '../test/fuzzer/fuzzer.gyp:*',
25 '../test/unittests/unittests.gyp:*',
26 ],
27 }],
28 ['test_isolation_mode != "noop"', {
29 'dependencies': [
30 '../test/bot_default.gyp:*',
31 '../test/benchmarks/benchmarks.gyp:*',
32 '../test/default.gyp:*',
33 '../test/ignition.gyp:*',
34 '../test/intl/intl.gyp:*',
35 '../test/message/message.gyp:*',
36 '../test/mjsunit/mjsunit.gyp:*',
37 '../test/mozilla/mozilla.gyp:*',
38 '../test/optimize_for_size.gyp:*',
39 '../test/perf.gyp:*',
40 '../test/preparser/preparser.gyp:*',
41 '../test/simdjs/simdjs.gyp:*',
42 '../test/test262/test262.gyp:*',
43 '../test/webkit/webkit.gyp:*',
44 '../tools/check-static-initializers.gyp:*',
45 '../tools/gcmole/run_gcmole.gyp:*',
46 '../tools/jsfunfuzz/jsfunfuzz.gyp:*',
47 '../tools/run-deopt-fuzzer.gyp:*',
48 '../tools/run-valgrind.gyp:*',
49 ],
50 }],
51 ]
52 }
53 ]
54 }
OLDNEW
« no previous file with comments | « build/README.txt ('k') | build/config/win/msvs_dependencies.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698