blob: 895abfaca243f076e8dc4eb56afa3328bf3c9abe (
plain)
1
2 README for chromium
3
4
5 NOTES
6
7 Some features of Chromium > 23.x.x.x use Google APIs, and to access those APIs
8 either an API Key or a set of OAuth 2.0 tokens is required. You can specify
9 the API keys to use either when you build Chromium, or at runtime using
10 environment variables.
11 After build chromium you will have a binary without API keys baked in, so
12 instead you should provide them at runtime.
13
14 To read more about API keys:
15 http://www.chromium.org/developers/how-tos/api-keys
16
17
18 WARNING
19
20 To build chromium you need a functioning shared semaphore implementation on the
21 host operating system. For POSIX semaphores to work, you need r/w access to
22 shared memory (/dev/shm).
23
24 Be sure you enabled /dev/shm or you will get errors like:
25
26 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
27 OSError: [Errno 13] Permission denied
28
29
30 POSTINSTALLATION
31
32 If you can't run chromium and you got a message like this:
33
34 $ chromium
35 [1410:1410:1506374616:FATAL:platform_font_gtk.cc(329)] Check failed: typeface.
36 Could not find any font: Fixed, sans
37 Aborted
38
39 You can solve this by installing for example xorg/xorg-font-dejavu-ttf.
|