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

Side by Side Diff: o3d/build/gyp_o3d

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 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
OLDNEW
(Empty)
1 #!/usr/bin/python
2
3 # This script is wrapper for O3D when compiling independently of chromium.
4 # Like in chromium, the gyp_chromium.gypi include is forced in.
5
6 import glob
7 import os
8 import shlex
9 import sys
10
11 try:
12 import gyp
13 except ImportError, e:
14 sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), '../../tools/gyp/py lib'))
15 import gyp
16
17 if __name__ == '__main__':
18 args = sys.argv[1:]
19
20 # Always include gyp_chromium.gypi
21 args += ['-I', os.path.join(os.path.dirname(sys.argv[0]),'../../build/gyp_chro mium.gypi')]
22
23 # Off we go...
24 sys.exit(gyp.main(args))
OLDNEW
« o3d/DEPS_gyp ('K') | « o3d/build/common.gypi ('k') | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698