summaryrefslogtreecommitdiff
path: root/pylib/gyp
diff options
context:
space:
mode:
Diffstat (limited to 'pylib/gyp')
-rw-r--r--pylib/gyp/MSVSNew.py4
-rw-r--r--pylib/gyp/MSVSProject.py4
-rw-r--r--pylib/gyp/MSVSToolFile.py4
-rw-r--r--pylib/gyp/MSVSUserFile.py4
-rwxr-xr-xpylib/gyp/MSVSVersion.py4
-rw-r--r--pylib/gyp/SCons.py4
-rw-r--r--pylib/gyp/__init__.py4
-rw-r--r--pylib/gyp/common.py4
-rw-r--r--pylib/gyp/generator/gypd.py4
-rw-r--r--pylib/gyp/generator/gypsh.py4
-rw-r--r--pylib/gyp/generator/make.py4
-rw-r--r--pylib/gyp/generator/msvs.py4
-rw-r--r--pylib/gyp/generator/scons.py3
-rw-r--r--pylib/gyp/generator/xcode.py4
-rw-r--r--pylib/gyp/input.py4
-rw-r--r--pylib/gyp/xcodeproj_file.py4
16 files changed, 63 insertions, 0 deletions
diff --git a/pylib/gyp/MSVSNew.py b/pylib/gyp/MSVSNew.py
index ba692b57..47095d6f 100644
--- a/pylib/gyp/MSVSNew.py
+++ b/pylib/gyp/MSVSNew.py
@@ -1,5 +1,9 @@
#!/usr/bin/python2.4
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""New implementation of Visual Studio project generation for SCons."""
import common
diff --git a/pylib/gyp/MSVSProject.py b/pylib/gyp/MSVSProject.py
index e7028354..49069558 100644
--- a/pylib/gyp/MSVSProject.py
+++ b/pylib/gyp/MSVSProject.py
@@ -1,5 +1,9 @@
#!/usr/bin/python2.4
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Visual Studio project reader/writer."""
import common
diff --git a/pylib/gyp/MSVSToolFile.py b/pylib/gyp/MSVSToolFile.py
index a8b2c029..bd8fd9ea 100644
--- a/pylib/gyp/MSVSToolFile.py
+++ b/pylib/gyp/MSVSToolFile.py
@@ -1,5 +1,9 @@
#!/usr/bin/python2.4
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Visual Studio project reader/writer."""
import common
diff --git a/pylib/gyp/MSVSUserFile.py b/pylib/gyp/MSVSUserFile.py
index 4531b3a9..21098e3c 100644
--- a/pylib/gyp/MSVSUserFile.py
+++ b/pylib/gyp/MSVSUserFile.py
@@ -1,5 +1,9 @@
#!/usr/bin/python2.4
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Visual Studio user preferences file writer."""
import common
diff --git a/pylib/gyp/MSVSVersion.py b/pylib/gyp/MSVSVersion.py
index a78d65d9..cf14a7f3 100755
--- a/pylib/gyp/MSVSVersion.py
+++ b/pylib/gyp/MSVSVersion.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Handle version information related to Visual Stuio."""
import os
diff --git a/pylib/gyp/SCons.py b/pylib/gyp/SCons.py
index 3d1b3c1b..76623028 100644
--- a/pylib/gyp/SCons.py
+++ b/pylib/gyp/SCons.py
@@ -1,5 +1,9 @@
#!/usr/bin/env python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""
SCons generator.
diff --git a/pylib/gyp/__init__.py b/pylib/gyp/__init__.py
index cd3d123c..f05fc3a5 100644
--- a/pylib/gyp/__init__.py
+++ b/pylib/gyp/__init__.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
import copy
import gyp.input
import optparse
diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py
index 92aebc1a..107bfe3f 100644
--- a/pylib/gyp/common.py
+++ b/pylib/gyp/common.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
import errno
import filecmp
import os.path
diff --git a/pylib/gyp/generator/gypd.py b/pylib/gyp/generator/gypd.py
index ef29890c..948f0b85 100644
--- a/pylib/gyp/generator/gypd.py
+++ b/pylib/gyp/generator/gypd.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""gypd output module
This module produces gyp input as its output. Output files are given the
diff --git a/pylib/gyp/generator/gypsh.py b/pylib/gyp/generator/gypsh.py
index 83a937ca..f48b03fa 100644
--- a/pylib/gyp/generator/gypsh.py
+++ b/pylib/gyp/generator/gypsh.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""gypsh output module
gypsh is a GYP shell. It's not really a generator per se. All it does is
diff --git a/pylib/gyp/generator/make.py b/pylib/gyp/generator/make.py
index 99aad118..4f57554c 100644
--- a/pylib/gyp/generator/make.py
+++ b/pylib/gyp/generator/make.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
# Notes:
#
# This is all roughly based on the Makefile system used by the Linux
diff --git a/pylib/gyp/generator/msvs.py b/pylib/gyp/generator/msvs.py
index aa568da0..61524501 100644
--- a/pylib/gyp/generator/msvs.py
+++ b/pylib/gyp/generator/msvs.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
import os
import re
import subprocess
diff --git a/pylib/gyp/generator/scons.py b/pylib/gyp/generator/scons.py
index f2100502..bd6d1e92 100644
--- a/pylib/gyp/generator/scons.py
+++ b/pylib/gyp/generator/scons.py
@@ -1,5 +1,8 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
import gyp
import gyp.common
diff --git a/pylib/gyp/generator/xcode.py b/pylib/gyp/generator/xcode.py
index 53e7e5af..5e5464c9 100644
--- a/pylib/gyp/generator/xcode.py
+++ b/pylib/gyp/generator/xcode.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
import filecmp
import gyp.common
import gyp.xcodeproj_file
diff --git a/pylib/gyp/input.py b/pylib/gyp/input.py
index 6e1aedd2..244b4aa5 100644
--- a/pylib/gyp/input.py
+++ b/pylib/gyp/input.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
from compiler.ast import Const
from compiler.ast import Dict
from compiler.ast import Discard
diff --git a/pylib/gyp/xcodeproj_file.py b/pylib/gyp/xcodeproj_file.py
index 45625204..8c7a3a2a 100644
--- a/pylib/gyp/xcodeproj_file.py
+++ b/pylib/gyp/xcodeproj_file.py
@@ -1,5 +1,9 @@
#!/usr/bin/python
+# Copyright (c) 2009 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Xcode project file generator.
This module is both an Xcode project file generator and a documentation of the