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

Side by Side Diff: build/gyp_pdfium

Issue 302653009: Followup comments from https://codereview.chromium.org/298893007/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 6 years, 6 months 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
« no previous file with comments | « no previous file | build/standalone.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2014 PDFium Authors. All rights reserved. 3 # Copyright 2014 PDFium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # This script is wrapper for PDFium that adds some support for how GYP 7 # This script is wrapper for PDFium that adds some support for how GYP
8 # is invoked by PDFium beyond what can be done in the gclient hooks. 8 # is invoked by PDFium beyond what can be done in the gclient hooks.
9 9
10 import os 10 import os
(...skipping 24 matching lines...) Expand all
35 args.extend(['-D', 'gyp_output_dir=out']) 35 args.extend(['-D', 'gyp_output_dir=out'])
36 36
37 # Set the GYP DEPTH variable to the root of the PDFium project. 37 # Set the GYP DEPTH variable to the root of the PDFium project.
38 args.append('--depth=' + os.path.relpath(pdfium_root)) 38 args.append('--depth=' + os.path.relpath(pdfium_root))
39 39
40 print 'Updating projects from gyp files...' 40 print 'Updating projects from gyp files...'
41 sys.stdout.flush() 41 sys.stdout.flush()
42 42
43 run_gyp(args) 43 run_gyp(args)
44 44
45
45 if __name__ == '__main__': 46 if __name__ == '__main__':
46 sys.exit(main()) 47 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698