Lines Matching refs:head
24 def head(self):
25 head = "# Copyright (c) 2020-2021 Lockzhiner Electronics Co., Ltd.\n"
26 head +="# limitations under the License.\n"
27 head +="# Licensed under the Apache License, Version 2.0 (the \"License\");\n"
28 head +="# you may not use this file except in compliance with the License.\n"
29 head +="# You may obtain a copy of the License at\n"
30 head +="#\n"
31 head +="# http://www.apache.org/licenses/LICENSE-2.0\n"
32 head +="#\n"
33 head +="# Unless required by applicable law or agreed to in writing, software\n"
34 head +="# distributed under the License is distributed on an \"AS IS\" BASIS,\n"
35 head +="# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n"
36 head +="# See the License for the specific language governing permissions and\n"
37 head +="#\n\n"
38 head += "import(\"//drivers/adapter/khdf/liteos_m/hdf.gni\")\n"
39 head += "import(\"//device/rockchip/%s/sdk_liteos/board.gni\")\n" % self.chip
40 head += "\n"
41 head += "static_library(\"%s\") {\n" % module
42 self.fp.write(head)
88 gn.head()