Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Side by Side Diff: content/renderer/renderer.sb

Issue 1727363005: OSX: Allow to load libsasl2.2.dylib and libcrypto.0.9.8.dylib in sandbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a comment to renderer.sb Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/Mac10_11_Expectations » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 16 matching lines...) Expand all
27 (literal "/var")) 27 (literal "/var"))
28 28
29 ; https://crbug.com/288697 29 ; https://crbug.com/288697
30 (allow file-read* 30 (allow file-read*
31 (regex #"^/(private/)?etc/localtime$") 31 (regex #"^/(private/)?etc/localtime$")
32 (regex #"^/usr/share/zoneinfo/")) 32 (regex #"^/usr/share/zoneinfo/"))
33 33
34 (allow file-read-metadata (regex #"^/(private/)?etc$")) 34 (allow file-read-metadata (regex #"^/(private/)?etc$"))
35 35
36 ; https://crbug.com/508935 36 ; https://crbug.com/508935
37 ; TODO(tkent): Remove this section when we drop 'results' attribute support.
38 ; https://crbug.com/590117
37 (if (param-true? elcap-or-later) 39 (if (param-true? elcap-or-later)
38 (allow file-read* 40 (allow file-read*
41 (literal "/usr/lib/libcrypto.0.9.8.dylib")
39 (literal "/usr/lib/libcsfde.dylib") 42 (literal "/usr/lib/libcsfde.dylib")
40 (literal "/usr/lib/libcurl.4.dylib") 43 (literal "/usr/lib/libcurl.4.dylib")
41 (literal "/usr/lib/libCoreStorage.dylib") 44 (literal "/usr/lib/libCoreStorage.dylib")
45 (literal "/usr/lib/libsasl2.2.dylib")
42 (literal "/usr/lib/libutil.dylib"))) 46 (literal "/usr/lib/libutil.dylib")))
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/Mac10_11_Expectations » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698