Latest Chrome Release on Android

I need to create the latest version of the Chrome browser for Android. I use the next step,

4 The above command creates a .gclient file in the chrome root directory and adds the target android to .gclient.

          target_os = ['android']
  • To download the source code:

          gclient sync
    
  • Install Dependencies

      6.1) cd /path/to/chromium/src
    
      6.2) ./build/install-build-deps.sh
    
  • Gclient spellcasters invoke GYP to generate your platform-specific files. This should give you the full gclient runhooks source tree

Compile:

To create a content wrapper for ARM Android:

1) cd / path / to / chromium / src

2). build /Android/envsetup.sh

3) android_gyp

4) ninja -C out/Release -j10 content_shell_apk

content_shell.apk, chrome/19.77.34.5, , http://whatsmyuseragent.com, , (32.0.1665.2) Android.

+4
1

android, linux ( content_shell /19.77.34.5).

src/content/content_shell.gypi

  'variables': {
'content_shell_product_name': 'Content Shell',
# The "19" is so that sites that sniff for version think that this is
# something reasonably current; the "77.34.5" is a hint that this isn't a
# standard Chrome.
'content_shell_version': '**19.77.34.5**',

chromium_testshell, ( Chrome/35.0.1879.0).

+5

All Articles