Add the cefsimple sample application which demonstrates the minimal functionality required to create a browser window.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1535 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2013-11-26 22:02:14 +00:00
parent 19379d98c2
commit 916d8d08c4
31 changed files with 4269 additions and 8 deletions

View File

@@ -2,7 +2,12 @@ CONTENTS
--------
cefclient Contains the cefclient sample application configured to build
using the files in this distribution.
using the files in this distribution. This application demonstrates
a wide range of CEF functionalities.
cefsimple Contains the cefsimple sample application configured to build
using the files in this distribution. This application demonstrates
the minimal functionality required to create a browser window.
Debug Contains libcef.so and other components required to run the debug
version of CEF-based applications. By default these files should be

View File

@@ -2,7 +2,7 @@
if [ -z "$1" ]; then
echo "ERROR: Please specify a build target: Debug or Release"
else
make -j8 cefclient BUILDTYPE=$1
make -j8 cefclient cefsimple BUILDTYPE=$1
if [ $? -eq 0 ]; then
echo "Giving SUID permissions to chrome-sandbox..."
echo "(using sudo so you may be asked for your password)"