diff --git a/common.gypi b/common.gypi index 0276b102d..07f06149b 100644 --- a/common.gypi +++ b/common.gypi @@ -110,8 +110,8 @@ # On Linux, we build with sse2 for Chromium builds. 'disable_sse2%': 0, - # Chromoting compilation is disabled by default. Set to 1 to enable. - 'chromoting%': 0, + # Chromoting compilation is enabled by default. Set to 0 to disable. + 'chromoting%': 1, }, # Define branding and buildtype on the basis of their settings within the @@ -408,6 +408,9 @@ ['chromeos==1', { 'defines': ['OS_CHROMEOS=1'], }], + ['chromoting==1', { + 'defines': ['ENABLE_CHROMOTING=1'], + }], ['proprietary_codecs==1', { 'defines': ['USE_PROPRIETARY_CODECS'], }],