Include Chromium / Dartium in Dart plugin

I installed the dart plugin and put the dartium (just downloaded) into the eclipse project. The folder is called chrome.

When I start a project, nothing happens. The Dart plugin has a property in the settings where I can specify the location of the custom browser. Does anyone know what I should choose here or what I missed.

+3


source to share


2 answers


'dartium' should be in a directory named 'chromium' at the root of your eclipse installation.

For example, if your eclipse is in ~ / dev / java / eclipse and you have unpacked dartium at ~ / downloads / google / dartium-lucid64-full-stable-1.12.1.0, then if you symbolically link to the link



ln -s ~ / downloads / google / dartium-lucid64-full-stable-1.12.1.0 ~ / dev / java / eclipse / chromium

then the eclipse dartium plugin will find dartium.

+4


source


On OS X, I put my Chromium.app package in the "chromium" directory, which is a child of the actual eclipse install directory.

(e.g. / Applications / eclipse-4.3.2 / chromium / Chromium.app)



enter image description here

+2


source







All Articles