7 lines
262 B
Bash
7 lines
262 B
Bash
|
#!/bin/sh
|
||
|
echo Patching build configuration files...
|
||
|
tools/patch_build.sh
|
||
|
echo Generating project files...
|
||
|
export CEF_DIRECTORY=$(basename `pwd`)
|
||
|
../tools/gyp/gyp cef.gyp -I ../build/common.gypi -I ../build/features_override.gypi -I cef.gypi --no-circular-check
|