|
Lines 972-977
AC_ARG_ENABLE(web_timing,
a/configure.ac_sec1
|
| 972 |
[],[enable_web_timing=$enable_unstable_features]) |
972 |
[],[enable_web_timing=$enable_unstable_features]) |
| 973 |
AC_MSG_RESULT([$enable_web_timing]) |
973 |
AC_MSG_RESULT([$enable_web_timing]) |
| 974 |
|
974 |
|
|
|
975 |
# check whether to enable Performance Timeline support |
| 976 |
AC_MSG_CHECKING([whether to enable Performance Timeline support]) |
| 977 |
AC_ARG_ENABLE(performance_timeline, |
| 978 |
AC_HELP_STRING([--enable-performance-timeline], |
| 979 |
[enable support for Performance Timeline (experimental) [default=no]]), |
| 980 |
[],[enable_performance_timeline=$enable_unstable_features]) |
| 981 |
AC_MSG_RESULT([$enable_performance_timeline]) |
| 982 |
|
| 983 |
# check whether to enable Resource Timing support |
| 984 |
AC_MSG_CHECKING([whether to enable Resource Timing support]) |
| 985 |
AC_ARG_ENABLE(resource_timing, |
| 986 |
AC_HELP_STRING([--enable-resource-timing], |
| 987 |
[enable support for Resource Timing (experimental and incomplete) [default=no]]), |
| 988 |
[],[enable_resource_timing=$enable_unstable_features]) |
| 989 |
AC_MSG_RESULT([$enable_resource_timing]) |
| 990 |
if test "$enable_resource_timing" = "yes" && test "$enable_performance_timeline" != "yes"; then |
| 991 |
AC_MSG_ERROR([Performance timeline is required for Resource timing]) |
| 992 |
fi |
| 993 |
|
| 975 |
# check whether to enable Blob support |
994 |
# check whether to enable Blob support |
| 976 |
AC_MSG_CHECKING([whether to enable Blob support]) |
995 |
AC_MSG_CHECKING([whether to enable Blob support]) |
| 977 |
AC_ARG_ENABLE(blob, |
996 |
AC_ARG_ENABLE(blob, |
|
Lines 1477-1482
AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
a/configure.ac_sec2
|
| 1477 |
AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"]) |
1496 |
AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"]) |
| 1478 |
AM_CONDITIONAL([ENABLE_WEB_AUDIO],[test "$enable_web_audio" = "yes"]) |
1497 |
AM_CONDITIONAL([ENABLE_WEB_AUDIO],[test "$enable_web_audio" = "yes"]) |
| 1479 |
AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"]) |
1498 |
AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"]) |
|
|
1499 |
AM_CONDITIONAL([ENABLE_PERFORMANCE_TIMELINE],[test "$enable_performance_timeline" = "yes"]) |
| 1500 |
AM_CONDITIONAL([ENABLE_RESOURCE_TIMING],[test "$enable_resource_timing" = "yes"]) |
| 1480 |
AM_CONDITIONAL([ENABLE_OPCODE_STATS],[test "$enable_opcode_stats" = "yes"]) |
1501 |
AM_CONDITIONAL([ENABLE_OPCODE_STATS],[test "$enable_opcode_stats" = "yes"]) |
| 1481 |
AM_CONDITIONAL([ENABLE_WEBKIT2],[test "$enable_webkit2" = "yes"]) |
1502 |
AM_CONDITIONAL([ENABLE_WEBKIT2],[test "$enable_webkit2" = "yes"]) |
| 1482 |
AM_CONDITIONAL([ENABLE_PLUGIN_PROCESS],[test "$enable_plugin_process" = "yes"]) |
1503 |
AM_CONDITIONAL([ENABLE_PLUGIN_PROCESS],[test "$enable_plugin_process" = "yes"]) |
|
Lines 1586-1594
Features:
a/configure.ac_sec3
|
| 1586 |
Media stream support : $enable_media_stream |
1607 |
Media stream support : $enable_media_stream |
| 1587 |
Opcode stats : $enable_opcode_stats |
1608 |
Opcode stats : $enable_opcode_stats |
| 1588 |
Page Visibility API support : $enable_page_visibility_api |
1609 |
Page Visibility API support : $enable_page_visibility_api |
|
|
1610 |
Performance Timeline support : $enable_performance_timeline |
| 1589 |
Quota API support : $enable_quota |
1611 |
Quota API support : $enable_quota |
| 1590 |
Register Protocol Handler support : $enable_register_protocol_handler |
1612 |
Register Protocol Handler support : $enable_register_protocol_handler |
| 1591 |
RequestAnimationFrame support : $enable_request_animation_frame |
1613 |
RequestAnimationFrame support : $enable_request_animation_frame |
|
|
1614 |
Resource Timing support : $enable_resource_timing |
| 1592 |
SQL client-side database storage support : $enable_sql_database |
1615 |
SQL client-side database storage support : $enable_sql_database |
| 1593 |
SVG fonts support : $enable_svg_fonts |
1616 |
SVG fonts support : $enable_svg_fonts |
| 1594 |
SVG support : $enable_svg |
1617 |
SVG support : $enable_svg |