diff options
author | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 13:56:25 +0000 |
---|---|---|
committer | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 13:56:25 +0000 |
commit | 1ec68c4ff983237a42439add3fdb6040fcaf4801 (patch) | |
tree | 6b4d92bed68fc58457a2dde11e3eb44a9e629869 /build | |
parent | 4dd80d8a83072254aa043cc7d986f6cce3130dc5 (diff) | |
download | chromium_src-1ec68c4ff983237a42439add3fdb6040fcaf4801.zip chromium_src-1ec68c4ff983237a42439add3fdb6040fcaf4801.tar.gz chromium_src-1ec68c4ff983237a42439add3fdb6040fcaf4801.tar.bz2 |
Allow device policy code to be optionally included.
BUG=None
TEST=Existing
Review URL: http://codereview.chromium.org/7096013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87468 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index d1867b4..6664afd 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -139,6 +139,9 @@ # Also note that this should be enabled for remoting to compile. 'p2p_apis%': 1, + # Configuration policy is enabled by default. Set to 0 to disable. + 'configuration_policy%': 1, + # If this is set, the clang plugins used on the buildbot will be used. # Run tools/clang/scripts/update.sh to make sure they are compiled. # This causes 'clang_chrome_plugins_flags' to be set. @@ -230,6 +233,7 @@ 'use_third_party_translations%': '<(use_third_party_translations)', 'remoting%': '<(remoting)', 'p2p_apis%': '<(p2p_apis)', + 'configuration_policy%': '<(configuration_policy)', 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)', |