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

Unified Diff: build/common.gypi

Issue 195993010: Adds the ability for the renderer to create the mojo channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use_mojo Created 6 years, 9 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 | content/DEPS » ('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 1dc3dcd6d8bc7594c0e782b0dea0abc119a894d5..cde3a593fd295349a2dc6cf6ee13abfa93acfa3c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -259,6 +259,9 @@
'branding%': '<(branding)',
'arm_version%': '<(arm_version)',
+ # Whether content/chrome is using mojo: see http://crbug.com/353602
+ 'use_mojo%': 0,
+
# Set to 1 to enable fast builds. Set to 2 for even faster builds
# (it disables debug info for fastest compilation - only for use
# on compile-only bots).
@@ -896,6 +899,7 @@
'use_aura%': '<(use_aura)',
'use_ash%': '<(use_ash)',
'use_cras%': '<(use_cras)',
+ 'use_mojo%': '<(use_mojo)',
'use_openssl%': '<(use_openssl)',
'use_nss%': '<(use_nss)',
'use_udev%': '<(use_udev)',
@@ -2212,6 +2216,9 @@
['use_libjpeg_turbo==1', {
'defines': ['USE_LIBJPEG_TURBO=1'],
}],
+ ['use_mojo==1', {
+ 'defines': ['USE_MOJO=1'],
+ }],
['use_x11==1', {
'defines': ['USE_X11=1'],
}],
« no previous file with comments | « no previous file | content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698