Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
build
Commits
7b66d28b
Commit
7b66d28b
authored
8 years ago
by
Treehugger Robot
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Download
Plain Diff
Merge "Add mk file parsers to support build variables required by system/bt"
parents
c1df498f
da214cd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
core/soong_config.mk
core/soong_config.mk
+5
-1
No files found.
core/soong_config.mk
View file @
7b66d28b
...
...
@@ -64,7 +64,11 @@ $(SOONG_VARIABLES): FORCE
echo
' "CrossHostSecondaryArch": "
$(HOST_CROSS_2ND_ARCH)
",'
;
\
echo
' "Safestack":
$(
if
$(
filter
true,
$(USE_SAFESTACK)
)
,true,false
)
,'
;
\
echo
''
;
\
echo
' "ArtUseReadBarrier":
$(
if
$(
filter
true,
$(PRODUCT_ART_USE_READ_BARRIER)
)
,true,false
)
'
;
\
echo
' "ArtUseReadBarrier":
$(
if
$(
filter
true,
$(PRODUCT_ART_USE_READ_BARRIER)
)
,true,false
)
,'
;
\
echo
''
;
\
echo
' "BtConfigIncludeDir": "
$(BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR)
",'
;
\
echo
' "BtHcilpIncluded": "
$(BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED)
",'
;
\
echo
' "BtHciUseMct":
$(
if
$(
filter
true,
$(BLUETOOTH_HCI_USE_MCT)
)
,true,false
)
'
;
\
echo
'}'
)
>
$(SOONG_VARIABLES_TMP)
;
\
if
!
cmp
-s
$(SOONG_VARIABLES_TMP)
$(SOONG_VARIABLES)
;
then
\
mv
$(SOONG_VARIABLES_TMP)
$(SOONG_VARIABLES)
;
\
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment