OLD | NEW |
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 rule gyp | 5 rule gyp |
6 command = $ | 6 command = $ |
7 GYP_CROSSCOMPILE=1 $ | 7 GYP_CROSSCOMPILE=1 $ |
8 ./third_party/gyp/gyp --depth=. -Idefault_targets.gypi $ | 8 ./third_party/gyp/gyp --depth=. -Idefault_targets.gypi $ |
9 -Goutput_dir=out $ | 9 -Goutput_dir=out $ |
10 --format=ninja fletch.gyp | 10 --format=ninja fletch.gyp |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 out/ReleaseXARM64/build.ninja: $ | 58 out/ReleaseXARM64/build.ninja: $ |
59 gyp $ | 59 gyp $ |
60 common.gypi $ | 60 common.gypi $ |
61 version.gyp $ | 61 version.gyp $ |
62 default_targets.gypi $ | 62 default_targets.gypi $ |
63 fletch.gyp $ | 63 fletch.gyp $ |
64 src/double_conversion.gyp $ | 64 src/double_conversion.gyp $ |
65 src/shared/shared.gyp $ | 65 src/shared/shared.gyp $ |
66 src/tools/driver/driver.gyp $ | 66 src/tools/driver/driver.gyp $ |
67 src/vm/vm.gyp $ | 67 src/vm/vm.gyp $ |
| 68 src/pkg/mdns/mdns.gyp $ |
68 | 69 |
69 build gyp: phony$ | 70 build gyp: phony$ |
70 out/DebugIA32/build.ninja $ | 71 out/DebugIA32/build.ninja $ |
71 out/DebugIA32Asan/build.ninja $ | 72 out/DebugIA32Asan/build.ninja $ |
72 out/DebugIA32Clang/build.ninja $ | 73 out/DebugIA32Clang/build.ninja $ |
73 out/DebugIA32ClangAsan/build.ninja $ | 74 out/DebugIA32ClangAsan/build.ninja $ |
74 out/DebugX64/build.ninja $ | 75 out/DebugX64/build.ninja $ |
75 out/DebugX64Asan/build.ninja $ | 76 out/DebugX64Asan/build.ninja $ |
76 out/DebugX64Clang/build.ninja $ | 77 out/DebugX64Clang/build.ninja $ |
77 out/DebugX64ClangAsan/build.ninja $ | 78 out/DebugX64ClangAsan/build.ninja $ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 src/double_conversion.gyp $ | 119 src/double_conversion.gyp $ |
119 src/shared/shared.gyp $ | 120 src/shared/shared.gyp $ |
120 src/tools/driver/driver.gyp $ | 121 src/tools/driver/driver.gyp $ |
121 src/vm/vm.gyp $ | 122 src/vm/vm.gyp $ |
122 | 123 |
123 build mbed: phony$ | 124 build mbed: phony$ |
124 out/DebugMBED/build.ninja $ | 125 out/DebugMBED/build.ninja $ |
125 out/ReleaseMBED/build.ninja $ | 126 out/ReleaseMBED/build.ninja $ |
126 | 127 |
127 default gyp | 128 default gyp |
OLD | NEW |