Skip to content

Commit afb6a64

Browse files
CzarekCzarek
authored andcommitted
Updated CEF 1 linux 64bit to Branch 1453, Chrome version 27.0.1453.93,
CEF revision 1268. Fix to the create-setup.py script.
1 parent a9e1168 commit afb6a64

16 files changed

Lines changed: 32 additions & 34 deletions

File tree

cefpython/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ ctags
3131
*.generated
3232

3333
cython_debug/
34+
35+
cefpython_py27.pyd
36+
cefpython_py32.pyd
37+
cefpython_py27.so
38+
cefpython_py32.so
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Chromium/CEF branch:
2-
1364
2+
1453
33
Chromium release url:
4-
http://src.chromium.org/svn/releases/25.0.1364.172
4+
http://src.chromium.org/svn/releases/27.0.1453.93
55
CEF revision:
6-
1248
6+
1268
77
CEF repository url:
8-
http://chromiumembedded.googlecode.com/svn/branches/1364/cef1@1248
8+
http://chromiumembedded.googlecode.com/svn/branches/1453/cef1@1268

cefpython/cef1/include/cef_version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
#ifndef CEF_INCLUDE_CEF_VERSION_H_
3636
#define CEF_INCLUDE_CEF_VERSION_H_
3737

38-
#define CEF_REVISION 1123
38+
#define CEF_REVISION 1268
3939
#define COPYRIGHT_YEAR 2013
4040

41-
#define CHROME_VERSION_MAJOR 25
41+
#define CHROME_VERSION_MAJOR 27
4242
#define CHROME_VERSION_MINOR 0
43-
#define CHROME_VERSION_BUILD 1364
44-
#define CHROME_VERSION_PATCH 152
43+
#define CHROME_VERSION_BUILD 1453
44+
#define CHROME_VERSION_PATCH 93
4545

4646
#define DO_MAKE_STRING(p) #p
4747
#define MAKE_STRING(p) DO_MAKE_STRING(p)

cefpython/cef1/include/internal/cef_types.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -471,11 +471,6 @@ typedef struct _cef_browser_settings_t {
471471
///
472472
bool accelerated_2d_canvas_disabled;
473473

474-
///
475-
// Set to true (1) to disable accelerated painting.
476-
///
477-
bool accelerated_painting_disabled;
478-
479474
///
480475
// Set to true (1) to disable accelerated filters.
481476
///

cefpython/cef1/include/internal/cef_types_wrappers.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,6 @@ struct CefBrowserSettingsTraits {
403403
target->accelerated_video_disabled = src->accelerated_video_disabled;
404404
target->accelerated_2d_canvas_disabled =
405405
src->accelerated_2d_canvas_disabled;
406-
target->accelerated_painting_disabled = src->accelerated_painting_disabled;
407406
target->accelerated_filters_disabled = src->accelerated_filters_disabled;
408407
target->accelerated_plugins_disabled = src->accelerated_plugins_disabled;
409408
target->developer_tools_disabled = src->developer_tools_disabled;

cefpython/cef1/linux/binaries_32bit/cefpython_py27.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ def GetModuleDirectory():
9191
"accelerated_compositing_enabled": False,
9292
"accelerated_filters_disabled": False,
9393
"accelerated_layers_disabled": False,
94-
"accelerated_painting_disabled": False,
9594
"accelerated_plugins_disabled": False,
9695
"accelerated_video_disabled": False,
9796
"animation_frame_rate": 0,

cefpython/cef1/linux/binaries_64bit/cefpython_py27.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ def GetModuleDirectory():
9191
"accelerated_compositing_enabled": False,
9292
"accelerated_filters_disabled": False,
9393
"accelerated_layers_disabled": False,
94-
"accelerated_painting_disabled": False,
9594
"accelerated_plugins_disabled": False,
9695
"accelerated_video_disabled": False,
9796
"animation_frame_rate": 0,

cefpython/cef1/linux/installer/create-setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ def main():
6565
print("Copying binaries to package dir")
6666
ret = os.system("cp -rf "+binaries_dir+"/* "+package_dir)
6767
assert ret == 0
68-
68+
6969
os.chdir(package_dir)
7070
print("Removing .log files from the package dir")
7171
ret = os.system("rm *.log")
72-
assert ret == 0
72+
# assert ret == 0 - if there are no .log files this assert would fail.
7373
os.chdir(installer_dir)
7474

7575
print("Creating __init__.py from template")

cefpython/cef1/linux/setup/setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ def CompileTimeConstants():
4343
["cefpython.pyx"],
4444

4545
cython_directives={
46-
"c_string_type": C_STRING_TYPE,
46+
"c_string_type": C_STRING_TYPE,
4747
"c_string_encoding": C_STRING_ENCODING,
4848
},
4949

5050
language='c++',
5151
include_dirs=[
52-
r'./../',
53-
r'./../../',
54-
r'./../../../',
52+
r'./../',
53+
r'./../../',
54+
r'./../../../',
5555
r'./../../../cython_includes/',
56-
'/usr/include/gtk-2.0',
57-
'/usr/include/glib-2.0',
56+
'/usr/include/gtk-2.0',
57+
'/usr/include/glib-2.0',
5858
'/usr/lib/i386-linux-gnu/gtk-2.0/include',
5959
'/usr/lib/i386-linux-gnu/glib-2.0/include',
6060
'/usr/include/cairo',
@@ -78,7 +78,7 @@ def CompileTimeConstants():
7878
'cef_dll_wrapper',
7979
'v8function_handler',
8080
'client_handler',
81-
'cpp_utils'
81+
'cpp_utils'
8282
],
8383

8484
# Loading libcef.so will only work when running scripts from the same

cefpython/cef1/windows/binaries/cefpython_py27.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ def GetModuleDirectory():
9191
"accelerated_compositing_enabled": False,
9292
"accelerated_filters_disabled": False,
9393
"accelerated_layers_disabled": False,
94-
"accelerated_painting_disabled": False,
9594
"accelerated_plugins_disabled": False,
9695
"accelerated_video_disabled": False,
9796
"animation_frame_rate": 0,

0 commit comments

Comments
 (0)