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

Side by Side Diff: trunk/pylib/gyp/generator/xcode.py

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 # Copyright (c) 2009 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
3 import filecmp 7 import filecmp
4 import gyp.common 8 import gyp.common
5 import gyp.xcodeproj_file 9 import gyp.xcodeproj_file
6 import errno 10 import errno
7 import os 11 import os
8 import posixpath 12 import posixpath
9 import re 13 import re
10 import shutil 14 import shutil
11 import subprocess 15 import subprocess
12 import tempfile 16 import tempfile
(...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 1098
1095 for build_file in build_files: 1099 for build_file in build_files:
1096 xcode_projects[build_file].Finalize1(xcode_targets) 1100 xcode_projects[build_file].Finalize1(xcode_targets)
1097 1101
1098 for build_file in build_files: 1102 for build_file in build_files:
1099 xcode_projects[build_file].Finalize2(xcode_targets, 1103 xcode_projects[build_file].Finalize2(xcode_targets,
1100 xcode_target_to_target_dict) 1104 xcode_target_to_target_dict)
1101 1105
1102 for build_file in build_files: 1106 for build_file in build_files:
1103 xcode_projects[build_file].Write() 1107 xcode_projects[build_file].Write()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698