Remove gyp_cef and use gyp_chromium instead (issue #1304).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1740 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
f6819004e0
commit
4e0dddcfa8
|
@ -185,7 +185,8 @@ def generate_msvs_projects(version):
|
||||||
sys.stdout.write('Generating '+version+' project files...')
|
sys.stdout.write('Generating '+version+' project files...')
|
||||||
os.environ['GYP_GENERATORS'] = 'msvs'
|
os.environ['GYP_GENERATORS'] = 'msvs'
|
||||||
os.environ['GYP_MSVS_VERSION'] = version
|
os.environ['GYP_MSVS_VERSION'] = version
|
||||||
gyper = [ 'python', 'tools/gyp_cef', os.path.relpath(os.path.join(output_dir, 'cefclient.gyp'), cef_dir) ]
|
gyper = [ 'python', '.../build/gyp_chromium',
|
||||||
|
os.path.relpath(os.path.join(output_dir, 'cefclient.gyp'), cef_dir) ]
|
||||||
RunAction(cef_dir, gyper);
|
RunAction(cef_dir, gyper);
|
||||||
move_file(os.path.relpath(os.path.join(output_dir, 'cefclient.sln')), \
|
move_file(os.path.relpath(os.path.join(output_dir, 'cefclient.sln')), \
|
||||||
os.path.relpath(os.path.join(output_dir, 'cefclient'+version+'.sln')))
|
os.path.relpath(os.path.join(output_dir, 'cefclient'+version+'.sln')))
|
||||||
|
|
Loading…
Reference in New Issue