From d57c95fde46c73d211336dcf09addb39eb165569 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Thu, 4 Sep 2014 14:58:55 +0000 Subject: [PATCH] Change Chromium .gclient to not use Managed mode. Since the sync_chromium.py script always passes --revision to the gclient sync command, we don't need to have managed=True in the .gclient file. This will avoid a warning that confuses our developers. BUG=3776 TESTED=Removed my chromium/.last_sync_chromium and performed a gclient sync with this patch applied. No warning complaining about Managed mode appears. R=andresp@webrtc.org Review URL: https://webrtc-codereview.appspot.com/23469004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7065 4adac7df-926f-26a2-2b94-8c16560cd09d --- chromium/.gclient | 2 +- chromium/OWNERS | 1 + chromium/README | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 chromium/OWNERS create mode 100644 chromium/README diff --git a/chromium/.gclient b/chromium/.gclient index ddfe54204b..7b4c9739f5 100644 --- a/chromium/.gclient +++ b/chromium/.gclient @@ -2,7 +2,7 @@ solutions = [{ 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git', 'deps_file': '.DEPS.git', - 'managed': True, + 'managed': False, 'custom_deps': { # Skip syncing some large dependencies WebRTC will never need. 'src/chrome/tools/test/reference_build/chrome_linux': None, diff --git a/chromium/OWNERS b/chromium/OWNERS new file mode 100644 index 0000000000..0428a4a1ae --- /dev/null +++ b/chromium/OWNERS @@ -0,0 +1 @@ +kjellander@webrtc.org diff --git a/chromium/README b/chromium/README new file mode 100644 index 0000000000..a47492c5ff --- /dev/null +++ b/chromium/README @@ -0,0 +1,5 @@ +This .gclient file is used to do download a copy of Chromium. +WebRTC uses the Chromium build toolchain and a number of shared +dependencies by creating symlinks to folders in this checkout, +using the ../setup_links.py script. +