[windows] Fix 'all' target

Change-Id: I5f6b4b56115f353deed2a332a6b27835bb559e8f
Reviewed-on: https://dart-review.googlesource.com/55020
Reviewed-by: Régis Crelier <regis@google.com>
Commit-Queue: Zach Anderson <zra@google.com>
This commit is contained in:
Zach Anderson
2018-05-14 22:17:38 +00:00
committed by commit-bot@chromium.org
parent 72921342c8
commit fe9f22aa83
2 changed files with 17 additions and 11 deletions
+16 -10
View File
@@ -97,16 +97,6 @@ _all_configs = [
configs = _jit_product_config
snapshot = true
},
{
suffix = "_jit_interpreter"
configs = _jit_interpreter_config
snapshot = true
},
{
suffix = "_jit_product_interpreter"
configs = _jit_product_interpreter_config
snapshot = true
},
{
suffix = "_precompiled_runtime"
configs = _precompiled_runtime_config
@@ -149,6 +139,22 @@ _all_configs = [
},
]
# The interpreter is not currently needed on Windows.
if (!is_win) {
_all_configs += [
{
suffix = "_jit_interpreter"
configs = _jit_interpreter_config
snapshot = true
},
{
suffix = "_jit_product_interpreter"
configs = _jit_product_interpreter_config
snapshot = true
},
]
}
# This template creates a target for each of the configurations listed above.
# For example:
#
+1 -1
View File
@@ -223,7 +223,7 @@ class NativeArguments {
RawObject** argv,
RawObject** retval)
: thread_(thread),
argc_tag_(ReverseArgOrderBit::update(kReverseArgOrderBit, argc_tag)),
argc_tag_(ReverseArgOrderBit::update(true, argc_tag)),
argv_(argv),
retval_(retval) {}
#endif