1. Aug 15, 2016
  2. Jun 15, 2016
    • Christopher N. Hesse's avatar
      chromium: Fix build breakage due to egl override · cf3383c2
      Christopher N. Hesse authored
      The correct dependencies on egl/wayland-egl are set in line 91:
      PACKAGECONFIG[use-egl] = ",,virtual/egl virtual/libgles2"
      We must not assign "" to the config in order not to break the build.
      
      Currently the 'bitbake chromium' task fails with the following message:
      Log data follows:
      | DEBUG: Executing python function sysroot_cleansstate
      | DEBUG: Python function sysroot_cleansstate finished
      | DEBUG: Executing shell function do_configure
      | Updating projects from gyp files...
      | Package egl was not found in the pkg-config search path.
      | Perhaps you should add the directory containing `egl.pc'
      | to the PKG_CONFIG_PATH environment variable
      | No package 'egl' found
      | Package wayland-egl was not found in the pkg-config search path.
      | Perhaps you should add the directory containing `wayland-egl.pc'
      | to the PKG_CONFIG_PATH environment variable
      | No package 'wayland-egl' found
      cf3383c2
    • Martin Jansa's avatar
    • Michael Davis's avatar
      chromium: Fix build issue with i686 · 5882f0ef
      Michael Davis authored
      
      Previously a build of i686 would fail looking for include.gypi.
      With this new directory it can be found by both i686 and i586 targetted
      builds.
      
      Signed-off-by: default avatarMichael Davis <michael.davis@essvote.com>
      5882f0ef
  3. May 20, 2016
  4. May 17, 2016
  5. Mar 16, 2016
  6. Mar 07, 2016
    • Martin Jansa's avatar
      chromium: fix build with newer gcc · a3789a41
      Martin Jansa authored
      
      * for whatever reason setting -Wstrict-overflow just for problematic
        line doesn't work and it needs to be adjusted on function definition
      * the errors are also report line number where the function starts not
        the specific line which causes that warning
      ../../third_party/WebKit/Source/wtf/dtoa/bignum.cc: In member function 'void WTF::double_conversion::Bignum::Align(const WTF::double_conversion::Bignum&)':
      ../../third_party/WebKit/Source/wtf/dtoa/bignum.cc:715:31: error: assuming signed overflow does not occur when simplifying conditional to constant [-Werror=strict-overflow]
                   for (int i = 0; i < zero_digits; ++i) {
                                     ^
      ../../third_party/WebKit/Source/wtf/dtoa/bignum.cc:715:31: error: assuming signed overflow does not occur when simplifying conditional to constant [-Werror=strict-overflow]
      ../../third_party/WebKit/Source/wtf/dtoa/bignum.cc: In member function 'void WTF::double_conversion::Bignum::AssignDecimalString(WTF::double_conversion::Vector<const char>)':
      ../../third_party/WebKit/Source/wtf/dtoa/bignum.cc:105:10: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Werror=strict-overflow]
           void Bignum::AssignDecimalString(Vector<const char> value) {
                ^
      
      ../../ui/gfx/image/image_util.cc: In function 'bool gfx::VisibleMargins(const gfx::ImageSkia&, int*, int*)':
      ../../ui/gfx/image/image_util.cc:50:6: error: assuming signed overflow does not occur when assuming that (X - c) <= X is always true [-Werror=strict-overflow]
       bool VisibleMargins(const ImageSkia& image, int* leading, int* trailing) {
            ^
      
      Signed-off-by: default avatarMartin Jansa <Martin.Jansa@gmail.com>
      a3789a41
    • Martin Jansa's avatar
      chromium: fix parsing with wayland enabled · 6d2f69e9
      Martin Jansa authored
      
      * d.getVar now takes 2 parameters, not 1
      
      Signed-off-by: default avatarMartin Jansa <Martin.Jansa@gmail.com>
      6d2f69e9
  7. Jan 07, 2016
  8. Jan 04, 2016
  9. Dec 11, 2015
  10. Nov 10, 2015
  11. Nov 09, 2015
  12. Oct 28, 2015
  13. Sep 23, 2015
  14. Aug 18, 2015
  15. Jul 23, 2015
  16. Jul 07, 2015
  17. Jun 17, 2015
    • Gary Thomas's avatar
      chromium: Fix potential configuration issues · fff8d3bd
      Gary Thomas authored
      
      This recipe should be using the python interpreter as built by bitbake,
      rather than relying on the host python.  In some cases, the host python
      may be incomplete or just plain old, yielding errors during the configure
      step such as:
        |     from sgmllib import SGMLParser, SGMLParseError
        | ImportError: No module named sgmllib
        | ninja: build stopped: subcommand failed.
      
      Adding 'inherit pythonnative' solves this problem on all build hosts.
      
      Signed-off-by: default avatarGary Thomas <gary@mlbassoc.com>
      Signed-off-by: default avatarOtavio Salvador <otavio@ossystems.com.br>
      fff8d3bd
  18. May 28, 2015
  19. May 14, 2015
  20. May 13, 2015
  21. May 08, 2015