mirror of
https://github.com/electron/node-gyp.git
synced 2025-08-15 12:58:19 +02:00
gyp: move from __future__ import to the top of the file
Fixes #1774 PR-URL: https://github.com/nodejs/node-gyp/pull/1789 Reviewed-By: Rod Vagg <rod@vagg.org>
This commit is contained in:
parent
4f4a677dfa
commit
f952b08f84
2 changed files with 4 additions and 3 deletions
|
@ -12,8 +12,6 @@
|
|||
Then it outputs a possible build order.
|
||||
"""
|
||||
|
||||
__author__ = 'nsylvain (Nicolas Sylvain)'
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import os
|
||||
|
@ -21,6 +19,8 @@ import re
|
|||
import sys
|
||||
import pretty_vcproj
|
||||
|
||||
__author__ = 'nsylvain (Nicolas Sylvain)'
|
||||
|
||||
def BuildProject(project, built, projects, deps):
|
||||
# if all dependencies are done, we can build it, otherwise we try to build the
|
||||
# dependency.
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
It outputs the resulting xml to stdout.
|
||||
"""
|
||||
__author__ = 'nsylvain (Nicolas Sylvain)'
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
|
@ -21,6 +20,8 @@ import sys
|
|||
from xml.dom.minidom import parse
|
||||
from xml.dom.minidom import Node
|
||||
|
||||
__author__ = 'nsylvain (Nicolas Sylvain)'
|
||||
|
||||
REPLACEMENTS = dict()
|
||||
ARGUMENTS = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue