diff options
-rw-r--r-- | build/all.gyp | 5 | ||||
-rw-r--r-- | build/common.gypi | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/build/all.gyp b/build/all.gyp index bbb60b8..d6b331fa 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -125,6 +125,11 @@ '../chrome/browser/chromeos/text_input/text_input.gyp:*', ], }], + ['chromoting==1', { + 'dependencies': [ + '../remoting/chromoting.gyp:*', + ], + }], ], }, ], diff --git a/build/common.gypi b/build/common.gypi index 3228d13..a46ff74 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -109,6 +109,9 @@ # 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, }, # Define branding and buildtype on the basis of their settings within the @@ -127,6 +130,7 @@ 'arm_neon%': '<(arm_neon)', 'sysroot%': '<(sysroot)', 'disable_sse2%': '<(disable_sse2)', + 'chromoting%': '<(chromoting)', # The release channel that this build targets. This is used to restrict # channel-specific build options, like which installer packages to create. |