paul-2011
paul-2011

Reputation: 704

How to download an older branch of Chromium from Git using gclient?

I need to build an older version that still supports NPAPI to run the Java Plugin but I can't seem to find the correct syntax to pull it, here's my .glient which pulls the latest revision:

solutions = [
  {
    "managed": False,
    "name": "src",
    "url": "https://chromium.googlesource.com/chromium/src.git",
    "custom_deps": {},
    "deps_file": ".DEPS.git",
    "safesync_url": "",
  },
]

And to sync I would use:

gclient sync

Upvotes: 1

Views: 896

Answers (1)

smorgan
smorgan

Reputation: 21579

There's a specific page on chromium.org that explains how to check out the source of a specific release. You should follow the instructions there.

Upvotes: 1

Related Questions