1. 17 Jan, 2014 1 commit
  2. 16 Jan, 2014 8 commits
  3. 15 Jan, 2014 1 commit
  4. 14 Jan, 2014 3 commits
  5. 13 Jan, 2014 1 commit
  6. 10 Jan, 2014 1 commit
  7. 09 Jan, 2014 2 commits
  8. 08 Jan, 2014 1 commit
  9. 07 Jan, 2014 4 commits
  10. 06 Jan, 2014 1 commit
  11. 03 Jan, 2014 2 commits
  12. 21 Dec, 2013 1 commit
  13. 19 Dec, 2013 1 commit
  14. 18 Dec, 2013 3 commits
  15. 16 Dec, 2013 3 commits
  16. 13 Dec, 2013 1 commit
    • digit@chromium.org's avatar
      fetch.py: Add '--nohooks' option. · 3596d585
      digit@chromium.org authored
      'fetch chromium' will fail if the build dependencies are not already installed
      on the host machine, because it runs 'gclient sync' which, by default, will run
      hooks that will try to run build/gyp_chromium (which will then fail).
      
      This introduces a --nohooks option that solve the problem by allowing the
      user to do the following:
      
        1) fetch --nohooks <recipe>
        2) src/build/install-build-deps.sh
        3) fetch <recipe>
      
      BUG=325795
      TEST=Run 'fetch --nohooks chromium' in a temporary 'clean' chroot directory.
      R=maruel@chromium.org,jochen@chromium.org,scottmg@chromium.org,agable@chromium.org
      
      Review URL: https://codereview.chromium.org/106403003
      
      git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@240680 0039d316-1c4b-4281-b951-d872f2087c98
      3596d585
  17. 12 Dec, 2013 3 commits
    • bratell@opera.com's avatar
      Avoid windows presubmit hang in gclient tests. · 0ee42a68
      bratell@opera.com authored
      If os.kill(os.getpid(), signal.CTRL_C_EVENT) doesn't do what the
      test author hopes it will do, the test will hang until it has calculated
      a million out-of-thread/process results. That is approximately an
      infinite hang.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/110883004
      
      git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@240319 0039d316-1c4b-4281-b951-d872f2087c98
      0ee42a68
    • bratell@opera.com's avatar
      Don't run presubmit checks on python276_bin. · 154c36c3
      bratell@opera.com authored
      Actually, don't run presubmit checks on anything starting with
      python and ending with _bin.
      
      BUG=326975
      
      Review URL: https://codereview.chromium.org/111643002
      
      git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@240316 0039d316-1c4b-4281-b951-d872f2087c98
      154c36c3
    • hinoka@chromium.org's avatar
      Adds SSO auth to gsutil · c6a2ee69
      hinoka@chromium.org authored
      Code path:
      1. plugins.sso_auth is imported, which adds the AuthHandler class to the global state.
      2. HasConfiguredCredentials() in gslib/utils.py is called by gsutil, and will return true if "prodaccess" exists on the system, which tells the system that we don't want a no-op auth handler.
      3. When a command is called, all the auth handlers are cycled through and sso_auth.SSOAuth is called, which calls a stubby command to emit a gaiamint'ed oauth2 access token, which is then used as the Authorization Header
      
      if --bypass_prodaccess is passed in, then:
      1. HasConfiguredCredentials() will bypass the check for prodaccess, as if it didn't exist.
      2. plugins.sso_auth does not get imported.
      Which will essentially cause gsutil to behave as if this patch never existed.
      
      So the expected behavior is:
      =.boto file does not exist, prodaccess exists, but unauthenticated=
      Failure: No handler was ready to authenticate. 3 handlers were checked. ['OAuth2Auth', 'HmacAuthV1Handler', 'SSOAuth'] Check your credentials.
      
      =.boto file exists, prodaccess exists, but unauthenticated=
      sso_auth will raise NotReadyToAuthenticate, and the .boto file will be used instead
      
      =.boto file exists, prodaccess exists, authenticated=
      sso_auth will be run _after_ the default gsutil authenticator, which causes the sso_auth to be used over whatever the default authentication is.
      
      bypass_prodaccess is passed in by default to upload_to_google_storage because we expect people who use upload_to_google_storage to not need prodaccess and have their own boto file already.  Also the sso_auth plugin will only request a readonlyi token, which will not work for uploading.
      
      BUG=258152
      
      Review URL: https://codereview.chromium.org/86123002
      
      git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@240266 0039d316-1c4b-4281-b951-d872f2087c98
      c6a2ee69
  18. 10 Dec, 2013 2 commits
  19. 09 Dec, 2013 1 commit