diff options
author | Rob Clark <[email protected]> | 2019-11-19 11:05:59 -0800 |
---|---|---|
committer | Rob Clark <[email protected]> | 2019-11-21 20:01:03 +0000 |
commit | b21f03ae7eae95ff99b111ba5907f09bfcfebbc8 (patch) | |
tree | 1e0aef11f4965add2f14c50074b733680718b9e2 /src/freedreno/perfcntrs/meson.build | |
parent | 6727114cba92c6ecaecacc6432e9fe869727beb1 (diff) |
freedreno/perfcntrs: move to shared location
This should eventually be useful for VK_KHR_performance_query as well.
And in the more near term, for fdperf.
Attempt to not break android build is best-effort and untested.
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/freedreno/perfcntrs/meson.build')
-rw-r--r-- | src/freedreno/perfcntrs/meson.build | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/freedreno/perfcntrs/meson.build b/src/freedreno/perfcntrs/meson.build new file mode 100644 index 00000000000..8e110633c3e --- /dev/null +++ b/src/freedreno/perfcntrs/meson.build @@ -0,0 +1,37 @@ +# Copyright © 2018 Rob Clark + +# 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. + +libfreedreno_perfcntrs_files = files( + 'fd2_perfcntr.c', + 'fd5_perfcntr.c', + 'fd6_perfcntr.c', + 'freedreno_perfcntr.h', +) + +libfreedreno_perfcntrs = static_library( + 'freedreno_perfcntrs', + [libfreedreno_perfcntrs_files, freedreno_xml_header_files], + include_directories : [inc_freedreno, inc_common], + c_args : [c_vis_args, no_override_init_args], + cpp_args : [cpp_vis_args], + dependencies : idep_nir_headers, + build_by_default : false, +) + |