From 4e0dddcfa8cd5322f29db9559f4dfff44c7b3877 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 12 Jun 2014 14:29:41 +0000 Subject: [PATCH] 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 --- tools/make_distrib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/make_distrib.py b/tools/make_distrib.py index 281889023..9379a6479 100644 --- a/tools/make_distrib.py +++ b/tools/make_distrib.py @@ -185,7 +185,8 @@ def generate_msvs_projects(version): sys.stdout.write('Generating '+version+' project files...') os.environ['GYP_GENERATORS'] = 'msvs' 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); move_file(os.path.relpath(os.path.join(output_dir, 'cefclient.sln')), \ os.path.relpath(os.path.join(output_dir, 'cefclient'+version+'.sln')))