I'm trying to make a web browser application for macOS. So I went to build chromium for macOS. I did all the instructions but I never got an Xcode project. Can you please help me with this.
I was following the instructions for macOS
I'm trying to make a web browser application for macOS. So I went to build chromium for macOS. I did all the instructions but I never got an Xcode project. Can you please help me with this.
I was following the instructions for macOS
You have to use GN to build XCode project. Suppose YourBuildFolder
is the folder in which you are compiling Chromium, then execute the following command:
gn gen out/YourBuildFolder --ide=xcode
Now if you navigate to YourBuildFolder
you should see this file: all.xcodeproj
As this project is too big, it will slow down XCode. So this isn't the recommended way to write Chromium code in macOS.