Package Details: chromium-dev 57.0.2987.8-1

Git Clone URL: https://aur.archlinux.org/chromium-dev.git (read-only)
Package Base: chromium-dev
Description: The open-source project behind Google Chrome (Dev Channel)
Upstream URL: http://www.chromium.org
Licenses: BSD
Submitter: None
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 148
Popularity: 0.160089
First Submitted: 2010-05-17 09:04
Last Updated: 2017-01-28 10:20

Dependencies (35)

Required by (3)

Sources (11)

Latest Comments

yacuken commented on 2017-01-20 07:52

full build log on pastebin
http://pastebin.com/ZrXDhf2X

sl1pkn07 commented on 2017-01-20 06:57

please paste more log, seems is incomplete

greetings

yacuken commented on 2017-01-20 06:47

ERROR at //build/config/linux/pkg_config.gni:85:17: Script returned non-zero exit code.
pkgresult = exec_script(pkg_config_script, args, "value")
^----------
Current dir: /home/yacuken/chromium-dev/src/chromium-57.0.2984.0/out/Release/
Command: python -- /home/yacuken/chromium-dev/src/chromium-57.0.2984.0/build/config/linux/pkg-config.py gmodule-2.0 gtk+-2.0 gthread-2.0
Returned 1.
stderr:

Package gtk+-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-2.0' found
Could not run pkg-config.

See //build/config/linux/gtk2/BUILD.gn:15:1: whence it was called.
pkg_config("gtk2_internal_config") {
^-----------------------------------
See //chrome/browser/ui/libgtkui/BUILD.gn:147:12: which caused the file to be included.
"//build/config/linux/gtk2",
^--------------------------

sl1pkn07 commented on 2017-01-20 06:46

Please paste the log (for add to the upstream bugreport)

Thanks

yacuken commented on 2017-01-20 06:42

gtk2 still needs as makedepends even if use gtk3.

sl1pkn07 commented on 2017-01-16 13:55

try to change the line #168 from gnome-keyring to libgnome-keyring

edit: pushed

yacuken commented on 2017-01-16 13:37

ERROR at //build/config/linux/pkg_config.gni:85:17: Script returned non-zero exit code.
pkgresult = exec_script(pkg_config_script, args, "value")
^----------
Current dir: /tmp/yaourt-tmp-yacuken/aur-chromium-dev/src/chromium-57.0.2979.0/out/Release/
Command: python -- /tmp/yaourt-tmp-yacuken/aur-chromium-dev/src/chromium-57.0.2979.0/build/config/linux/pkg-config.py gnome-keyring-1
Returned 1.
stderr:

Package gnome-keyring-1 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gnome-keyring-1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gnome-keyring-1' found
Could not run pkg-config.

Add libgnome-keyring to makedepends (if use gnome-keyring). Thanks

sl1pkn07 commented on 2017-01-13 23:29

try build with internal jinja2,markupsafe and ply

in the next release i will use instead of system ones, because is only for make, not for run

LordAro commented on 2017-01-13 22:52

I'm getting a (several) compile failure around 10000 files in:

gen/v8/src/inspector/protocol/HeapProfiler.h:294:13: error: static assertion failed: property total should not be set yet
static_assert(!(STATE & TotalSet), "property total should not be set yet");


any ideas?

neeks commented on 2017-01-12 16:12

The build tag 57.0.2970.0 happened right at the beginning of real GTK3 integration support. If you use the default adwaita theme - specifically the light version - none of the GTK3 menu text gets styled and the text will appear white on a white background.

The next tagged version should have much better support, but until then you can update `~/.config/gtk-3.0/gtk.css` with the following to make the menu item's visible. This solution is just meant as temporary as the styling won't match up to the theme completely because this version's gtk3 css selector targeting isn't working great with 3.20+:

```

/* Seperator */
.menu .menuitem {
color: rgba(0,0,0.15);
}

/* Menu Item Text Color */
.menu .menuitem * {
color: rgba(0,0,0,.75);
}

/* Menu Item on hover, can't get the text to pick up a different color */
.menu .menuitem:hover {
background-color: #4a90d9;
}

/* Make the menu border more subtle */
.menu {
border: 1px solid rgba(0,0,0,.05);
}

```

You can follow Chromium's gtk3 progress here:
https://bugs.chromium.org/p/chromium/issues/detail?id=132847

All comments