Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AndroidSystemSEPolicy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Werner Sembach
AndroidSystemSEPolicy
Commits
cdaf97bf
Commit
cdaf97bf
authored
7 years ago
by
Treehugger Robot
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix libsepolwrap with SANITIZE_HOST=address"
parents
b22278e4
948354ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/Android.bp
+10
-1
10 additions, 1 deletion
tests/Android.bp
with
10 additions
and
1 deletion
tests/Android.bp
+
10
−
1
View file @
cdaf97bf
cc_library_host_shared {
cc_library_host_shared {
name: "libsepolwrap",
name: "libsepolwrap",
srcs: ["sepol_wrap.cpp"],
srcs: ["sepol_wrap.cpp"],
shared_libs: [
"libbase",
"libsepol"],
shared_libs: ["libsepol"],
cflags: ["-Wall", "-Werror",],
cflags: ["-Wall", "-Werror",],
export_include_dirs: ["include"],
export_include_dirs: ["include"],
// libsepolwrap gets loaded from the system python, which does not have the
// ASAN runtime. So turn off sanitization for ourself, and use static
// libraries, since the shared libraries will use ASAN.
static_libs: ["libbase"],
stl: "libc++_static",
sanitize: {
never: true,
},
}
}
cc_prebuilt_binary {
cc_prebuilt_binary {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment