Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(614)

Unified Diff: build/common.gypi

Issue 2788003: Enable chromoting in the build by default (Closed)
Patch Set: fixed mac Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/chromoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 70f42dde599f5705fbdcfe7fd7453be48c467ab4..3c3f71bfb4de3e90a2633858021d61f84566803d 100644
--- a/build/common.gypi
+++ b/build/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
@@ -405,6 +405,9 @@
['chromeos==1', {
'defines': ['OS_CHROMEOS=1'],
}],
+ ['chromoting==1', {
+ 'defines': ['ENABLE_CHROMOTING=1'],
+ }],
['proprietary_codecs==1', {
'defines': ['USE_PROPRIETARY_CODECS'],
}],
« no previous file with comments | « no previous file | remoting/chromoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698