aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/chromium/chromium/armv7a/include.gypi
blob: 1a4580bff60c06fccc633f9e741e3197a6c3d89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  'variables': {

    # Configure for armv7 compilation
    'target_arch': 'arm',
    'armv7': 1,

    # Disable native client (Google's settings)
    'disable_nacl': 1,

    # V8 config (Google's settings)
    'v8_use_snapshot': 'false',
    
    # No ffmpeg binaries in the tree, so make sure the build will not fail
    'use_system_ffmpeg' : '1',	

    # Needed for ARM compilation (build fails otherwise)
    'linux_use_tcmalloc': 0,

    # Change to your rootfs path
    'sysroot': '__PATH__TO_BE_REPLACED__',

    #'arm_thumb': 1,
  }
}