-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test: make iHD_drv_video for x86_64 Change-Id: I9582630dc52b0780c1a63ab8ead63a1823186445 Signed-off-by: JeevakaPrabu <[email protected]>
- Loading branch information
1 parent
270dc18
commit 741511a
Showing
112 changed files
with
2,930 additions
and
2,365 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright (c) 2024, Intel Corporation | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a | ||
// copy of this software and associated documentation files (the "Software"), | ||
// to deal in the Software without restriction, including without limitation | ||
// the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
// and/or sell copies of the Software, and to permit persons to whom the | ||
// Software is furnished to do so, subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included | ||
// in all copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
// OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
cc_library_shared { | ||
name: "libigfxcmrt", | ||
srcs: [ | ||
@LOCAL_SRC_FILES | ||
], | ||
local_include_dirs: [ | ||
@LOCAL_C_INCLUDES | ||
], | ||
cflags: [ | ||
"-Werror", | ||
"-Wno-unused-variable", | ||
"-Wno-unused-parameter", | ||
"-Wno-unused-private-field", | ||
"-Wno-non-virtual-dtor", | ||
"-Wno-implicit-fallthrough", | ||
@LOCAL_CFLAGS | ||
], | ||
header_libs: [ | ||
"libva_headers", | ||
], | ||
shared_libs: [ | ||
"libc", | ||
"libdl", | ||
"libcutils", | ||
"liblog", | ||
"libutils", | ||
"libm", | ||
"libva", | ||
"libva-android", | ||
], | ||
vendor: true, | ||
enabled: false, | ||
arch: { | ||
x86_64: { | ||
enabled: true, | ||
}, | ||
}, | ||
} | ||
|
||
cc_library_headers { | ||
name: "libcmrt_headers", | ||
export_include_dirs: [ | ||
"linux/hardware", | ||
], | ||
vendor: true, | ||
enabled: false, | ||
arch: { | ||
x86_64: { | ||
enabled: true, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// Copyright (c) 2024, Intel Corporation | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a | ||
// copy of this software and associated documentation files (the "Software"), | ||
// to deal in the Software without restriction, including without limitation | ||
// the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
// and/or sell copies of the Software, and to permit persons to whom the | ||
// Software is furnished to do so, subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included | ||
// in all copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
// OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
package { | ||
default_applicable_licenses: ["external_gmmlib_license"], | ||
} | ||
|
||
license { | ||
name: "external_gmmlib_license", | ||
visibility: [":__subpackages__"], | ||
license_text: [ | ||
"LICENSE.md", | ||
], | ||
} | ||
|
||
cc_library_shared { | ||
name: "libgmm_umd", | ||
vendor: true, | ||
srcs: [ | ||
@LOCAL_SRC_FILES | ||
], | ||
cflags: [ | ||
@LOCAL_CFLAGS | ||
"-fvisibility=hidden", | ||
"-fno-omit-frame-pointer", | ||
"-march=corei7", | ||
"-Werror", | ||
"-Wno-logical-op-parentheses", | ||
"-Wno-shift-negative-value", | ||
"-Wno-unused-parameter", | ||
], | ||
cppflags: [ | ||
"-Wno-implicit-fallthrough", | ||
"-Wno-missing-braces", | ||
"-Wno-unknown-pragmas", | ||
"-Wno-parentheses", | ||
"-Wno-pragma-pack", | ||
"-fexceptions", | ||
"-std=c++11", | ||
"-fvisibility-inlines-hidden", | ||
"-fno-use-cxa-atexit", | ||
"-fno-rtti", | ||
"-fcheck-new", | ||
"-pthread", | ||
], | ||
local_include_dirs: [ | ||
@LOCAL_C_INCLUDES | ||
], | ||
enabled: false, | ||
arch: { | ||
x86_64: { | ||
enabled: true, | ||
}, | ||
}, | ||
} | ||
|
||
cc_library_headers { | ||
name: "libgmm_headers", | ||
vendor: true, | ||
export_include_dirs: [ | ||
"Source/GmmLib/inc", | ||
"Source/inc", | ||
"Source/inc/common", | ||
], | ||
enabled: false, | ||
arch: { | ||
x86_64: { | ||
enabled: true, | ||
}, | ||
}, | ||
} |
Oops, something went wrong.