OLD | NEW |
1 ;; | 1 ;; |
2 ;; Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 ;; Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 ;; Use of this source code is governed by a BSD-style license that can be | 3 ;; Use of this source code is governed by a BSD-style license that can be |
4 ;; found in the LICENSE file. | 4 ;; found in the LICENSE file. |
5 ;; | 5 ;; |
6 | 6 |
7 ; *** The contents of content/common/common.sb are implicitly included here. *** | 7 ; *** The contents of content/common/common.sb are implicitly included here. *** |
8 | 8 |
9 ; Needed for Fonts. | 9 ; Needed for Fonts. |
10 (allow file-read* (regex #"^/System/Library/Fonts($|/)")) | 10 (allow file-read* (regex #"^/System/Library/Fonts($|/)")) |
(...skipping 18 matching lines...) Expand all Loading... |
29 ) | 29 ) |
30 | 30 |
31 ; http://crbug.com/288697 | 31 ; http://crbug.com/288697 |
32 (allow file-read* | 32 (allow file-read* |
33 (regex #"^/(private/)?etc/localtime$") | 33 (regex #"^/(private/)?etc/localtime$") |
34 (regex #"^/usr/share/zoneinfo/") | 34 (regex #"^/usr/share/zoneinfo/") |
35 ) | 35 ) |
36 (allow file-read-metadata | 36 (allow file-read-metadata |
37 (regex #"^/(private/)?etc$") | 37 (regex #"^/(private/)?etc$") |
38 ) | 38 ) |
| 39 |
| 40 ; http://crbug.com/508935 |
| 41 (if (param-true? elcap-or-later) |
| 42 (allow file-read* |
| 43 (literal "/usr/lib/libcsfde.dylib") |
| 44 (literal "/usr/lib/libcurl.4.dylib") |
| 45 (literal "/usr/lib/libCoreStorage.dylib") |
| 46 (literal "/usr/lib/libutil.dylib") |
| 47 )) |
OLD | NEW |