Change bool, and string properties to *bool, and *string for cc
there's no use case for prepending/appending to bool, and string properties within module struct. Declearing "*bool" and "*string" almost cover everything user need. Test: m -j checkbuild Bug: b/68853585 Change-Id: I8342d4a43fb81f2842532ddb38fba414767ac82a
This commit is contained in:
parent
62c43ed23c
commit
dab0fd582f
1 changed files with 3 additions and 3 deletions
|
@ -446,7 +446,7 @@ cc_test_library {
|
|||
name: "libtestshared",
|
||||
defaults: ["bionic_testlib_defaults"],
|
||||
srcs: ["empty.cpp"],
|
||||
relative_install_path: "/inaccessible_libs",
|
||||
relative_install_path: "bionic-loader-test-libs/inaccessible_libs",
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
@ -629,7 +629,7 @@ cc_test_library {
|
|||
defaults: ["bionic_testlib_defaults"],
|
||||
srcs: ["ld_config_test_helper_lib1.cpp"],
|
||||
shared_libs: ["ld_config_test_helper_lib2"],
|
||||
relative_install_path: "/ns2",
|
||||
relative_install_path: "bionic-loader-test-libs/ns2",
|
||||
}
|
||||
|
||||
cc_test_library {
|
||||
|
@ -637,7 +637,7 @@ cc_test_library {
|
|||
host_supported: false,
|
||||
defaults: ["bionic_testlib_defaults"],
|
||||
srcs: ["ld_config_test_helper_lib2.cpp"],
|
||||
relative_install_path: "/ns2",
|
||||
relative_install_path: "bionic-loader-test-libs/ns2",
|
||||
}
|
||||
|
||||
cc_test_library {
|
||||
|
|
Loading…
Reference in a new issue