Giter Club home page Giter Club logo

Comments (2)

paoloposadas avatar paoloposadas commented on August 26, 2024

Hello! We have confirmed with our engineers that the below .gclient file is needed:

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

And after doing so, do a gclient sync

gclient sync

Kindly see the below for your references:
https://stackoverflow.com/questions/8684282/gclient-runhooks-fails
https://www.chromium.org/developers/how-tos/depottools

from apprtcdesk.

agouaillard-cosmo avatar agouaillard-cosmo commented on August 26, 2024

This is a project that did not receive any new commit for 4 years and should be considered dead.

That being said, here are some informations:

  • as written in the README " It is based on the peerconnection_client that is provided in the reference code." this depends on you checking out the webrtc.org code first, and then adding this code in the /talk/ directory.
  • Note that the /talk/ directory doe snot exist in the webrtc code since more than 4 years (https://chromium.googlesource.com/external/webrtc/stable/talk/)
  • Note that the project is still using GYP files for configurations, that have been replaced by GN files two years ago in the webrtc code.

oh, and .... you pointed to the CHROMIUM url, and not the webrtc url, so your proposed solution would not work either.

In a normal webrtc checkout, the "fetch" command creates your configuration file, pointing to webrtc URL. You can check in the depot_tools source code for the fetch command:

@staticmethod
def fetch_spec(props):
url = 'https://webrtc.googlesource.com/src.git'
spec = {
'solutions': [
{
'name': 'src',
'url': url,
'deps_file': 'DEPS',
'managed': False,
'custom_deps': {},
},
],
'with_branch_heads': True,
}

from apprtcdesk.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.