Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 1 | // Copyright (C) 2019 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package apex |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
| 19 | "io" |
| 20 | "path/filepath" |
| 21 | "strings" |
| 22 | |
| 23 | "android/soong/android" |
| 24 | "android/soong/cc" |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 25 | |
| 26 | "github.com/google/blueprint/proptools" |
| 27 | ) |
| 28 | |
| 29 | func (a *apexBundle) AndroidMk() android.AndroidMkData { |
| 30 | if a.properties.HideFromMake { |
| 31 | return android.AndroidMkData{ |
| 32 | Disabled: true, |
| 33 | } |
| 34 | } |
| 35 | writers := []android.AndroidMkData{} |
| 36 | writers = append(writers, a.androidMkForType()) |
| 37 | return android.AndroidMkData{ |
| 38 | Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) { |
| 39 | for _, data := range writers { |
| 40 | data.Custom(w, name, prefix, moduleDir, data) |
| 41 | } |
| 42 | }} |
| 43 | } |
| 44 | |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 45 | func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, apexName, moduleDir string) []string { |
| 46 | // apexBundleName comes from the 'name' property; apexName comes from 'apex_name' property. |
| 47 | // An apex is installed to /system/apex/<apexBundleName> and is activated at /apex/<apexName> |
| 48 | // In many cases, the two names are the same, but could be different in general. |
| 49 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 50 | moduleNames := []string{} |
| 51 | apexType := a.properties.ApexType |
| 52 | // To avoid creating duplicate build rules, run this function only when primaryApexType is true |
| 53 | // to install symbol files in $(PRODUCT_OUT}/apex. |
| 54 | // And if apexType is flattened, run this function to install files in $(PRODUCT_OUT}/system/apex. |
| 55 | if !a.primaryApexType && apexType != flattenedApex { |
| 56 | return moduleNames |
| 57 | } |
| 58 | |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 59 | // b/140136207. When there are overriding APEXes for a VNDK APEX, the symbols file for the overridden |
| 60 | // APEX and the overriding APEX will have the same installation paths at /apex/com.android.vndk.v<ver> |
| 61 | // as their apexName will be the same. To avoid the path conflicts, skip installing the symbol files |
| 62 | // for the overriding VNDK APEXes. |
| 63 | symbolFilesNotNeeded := a.vndkApex && len(a.overridableProperties.Overrides) > 0 |
| 64 | if symbolFilesNotNeeded && apexType != flattenedApex { |
| 65 | return moduleNames |
| 66 | } |
| 67 | |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 68 | var postInstallCommands []string |
| 69 | for _, fi := range a.filesInfo { |
| 70 | if a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() { |
| 71 | // TODO(jiyong): pathOnDevice should come from fi.module, not being calculated here |
| 72 | linkTarget := filepath.Join("/system", fi.Path()) |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 73 | linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path()) |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 74 | mkdirCmd := "mkdir -p " + filepath.Dir(linkPath) |
| 75 | linkCmd := "ln -sfn " + linkTarget + " " + linkPath |
| 76 | postInstallCommands = append(postInstallCommands, mkdirCmd, linkCmd) |
| 77 | } |
| 78 | } |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 79 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 80 | for _, fi := range a.filesInfo { |
| 81 | if cc, ok := fi.module.(*cc.Module); ok && cc.Properties.HideFromMake { |
| 82 | continue |
| 83 | } |
| 84 | |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 85 | linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() |
| 86 | |
| 87 | var moduleName string |
| 88 | if linkToSystemLib { |
| 89 | moduleName = fi.moduleName |
| 90 | } else { |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 91 | moduleName = fi.moduleName + "." + apexBundleName + a.suffix |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | if !android.InList(moduleName, moduleNames) { |
| 95 | moduleNames = append(moduleNames, moduleName) |
| 96 | } |
| 97 | |
| 98 | if linkToSystemLib { |
| 99 | // No need to copy the file since it's linked to the system file |
| 100 | continue |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
Jiyong Park | 1833cef | 2019-12-13 13:28:36 +0900 | [diff] [blame] | 104 | if fi.moduleDir != "" { |
| 105 | fmt.Fprintln(w, "LOCAL_PATH :=", fi.moduleDir) |
| 106 | } else { |
| 107 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 108 | } |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 109 | fmt.Fprintln(w, "LOCAL_MODULE :=", moduleName) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 110 | // /apex/<apex_name>/{lib|framework|...} |
| 111 | pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir) |
| 112 | if apexType == flattenedApex { |
| 113 | // /system/apex/<name>/{lib|framework|...} |
| 114 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", filepath.Join(a.installDir.ToMakePath().String(), |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 115 | apexBundleName, fi.installDir)) |
| 116 | if a.primaryApexType && !symbolFilesNotNeeded { |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 117 | fmt.Fprintln(w, "LOCAL_SOONG_SYMBOL_PATH :=", pathWhenActivated) |
| 118 | } |
| 119 | if len(fi.symlinks) > 0 { |
| 120 | fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS :=", strings.Join(fi.symlinks, " ")) |
| 121 | } |
| 122 | |
| 123 | if fi.module != nil && fi.module.NoticeFile().Valid() { |
| 124 | fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", fi.module.NoticeFile().Path().String()) |
| 125 | } |
| 126 | } else { |
| 127 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", pathWhenActivated) |
Jiyong Park | 19972c7 | 2020-01-28 20:05:29 +0900 | [diff] [blame] | 128 | |
| 129 | // For non-flattend APEXes, the merged notice file is attached to the APEX itself. |
| 130 | // We don't need to have notice file for the individual modules in it. Otherwise, |
| 131 | // we will have duplicated notice entries. |
| 132 | fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true") |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 133 | } |
| 134 | fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", fi.builtFile.String()) |
| 135 | fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", fi.class.NameInMake()) |
| 136 | if fi.module != nil { |
| 137 | archStr := fi.module.Target().Arch.ArchType.String() |
| 138 | host := false |
| 139 | switch fi.module.Target().Os.Class { |
| 140 | case android.Host: |
| 141 | if fi.module.Target().Arch.ArchType != android.Common { |
| 142 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr) |
| 143 | } |
| 144 | host = true |
| 145 | case android.HostCross: |
| 146 | if fi.module.Target().Arch.ArchType != android.Common { |
| 147 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr) |
| 148 | } |
| 149 | host = true |
| 150 | case android.Device: |
| 151 | if fi.module.Target().Arch.ArchType != android.Common { |
| 152 | fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr) |
| 153 | } |
| 154 | } |
| 155 | if host { |
| 156 | makeOs := fi.module.Target().Os.String() |
| 157 | if fi.module.Target().Os == android.Linux || fi.module.Target().Os == android.LinuxBionic { |
| 158 | makeOs = "linux" |
| 159 | } |
| 160 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", makeOs) |
| 161 | fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true") |
| 162 | } |
| 163 | } |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 164 | if fi.jacocoReportClassesFile != nil { |
| 165 | fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", fi.jacocoReportClassesFile.String()) |
| 166 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 167 | if fi.class == javaSharedLib { |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 168 | javaModule := fi.module.(javaLibrary) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 169 | // soong_java_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .jar Therefore |
| 170 | // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise |
| 171 | // we will have foo.jar.jar |
| 172 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.builtFile.Base(), ".jar")) |
| 173 | fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", javaModule.ImplementationAndResourcesJars()[0].String()) |
| 174 | fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", javaModule.HeaderJars()[0].String()) |
| 175 | fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", fi.builtFile.String()) |
| 176 | fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false") |
| 177 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk") |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 178 | } else if fi.class == app { |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 179 | fmt.Fprintln(w, "LOCAL_CERTIFICATE :=", fi.certificate.AndroidMkString()) |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 180 | // soong_app_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .apk Therefore |
| 181 | // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise |
| 182 | // we will have foo.apk.apk |
| 183 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.builtFile.Base(), ".apk")) |
| 184 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_app_prebuilt.mk") |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 185 | } else if fi.class == nativeSharedLib || fi.class == nativeExecutable || fi.class == nativeTest { |
| 186 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.builtFile.Base()) |
| 187 | if cc, ok := fi.module.(*cc.Module); ok { |
| 188 | if cc.UnstrippedOutputFile() != nil { |
| 189 | fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", cc.UnstrippedOutputFile().String()) |
| 190 | } |
| 191 | cc.AndroidMkWriteAdditionalDependenciesForSourceAbiDiff(w) |
| 192 | if cc.CoverageOutputFile().Valid() { |
| 193 | fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", cc.CoverageOutputFile().String()) |
| 194 | } |
| 195 | } |
| 196 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_cc_prebuilt.mk") |
| 197 | } else { |
| 198 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.builtFile.Base()) |
Jiyong Park | 7aa3f76 | 2020-01-28 16:51:34 +0900 | [diff] [blame] | 199 | if fi.builtFile == a.manifestPbOut && apexType == flattenedApex { |
Jooyung Han | 75de261 | 2020-01-24 02:02:45 +0900 | [diff] [blame] | 200 | if a.primaryApexType { |
| 201 | // Make apex_manifest.pb module for this APEX to override all other |
| 202 | // modules in the APEXes being overridden by this APEX |
| 203 | var patterns []string |
| 204 | for _, o := range a.overridableProperties.Overrides { |
| 205 | patterns = append(patterns, "%."+o+a.suffix) |
| 206 | } |
| 207 | fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(patterns, " ")) |
Jiyong Park | 0abc1b4 | 2020-01-09 17:43:39 +0900 | [diff] [blame] | 208 | |
Jiyong Park | 7aa3f76 | 2020-01-28 16:51:34 +0900 | [diff] [blame] | 209 | if len(a.compatSymlinks) > 0 { |
Jooyung Han | 75de261 | 2020-01-24 02:02:45 +0900 | [diff] [blame] | 210 | // For flattened apexes, compat symlinks are attached to apex_manifest.json which is guaranteed for every apex |
| 211 | postInstallCommands = append(postInstallCommands, a.compatSymlinks...) |
| 212 | } |
| 213 | } |
| 214 | if len(postInstallCommands) > 0 { |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 215 | fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && ")) |
Jiyong Park | 0abc1b4 | 2020-01-09 17:43:39 +0900 | [diff] [blame] | 216 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 217 | } |
| 218 | fmt.Fprintln(w, "include $(BUILD_PREBUILT)") |
| 219 | } |
| 220 | } |
| 221 | return moduleNames |
| 222 | } |
| 223 | |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 224 | func (a *apexBundle) writeRequiredModules(w io.Writer) { |
| 225 | var required []string |
| 226 | var targetRequired []string |
| 227 | var hostRequired []string |
| 228 | for _, fi := range a.filesInfo { |
| 229 | required = append(required, fi.requiredModuleNames...) |
| 230 | targetRequired = append(targetRequired, fi.targetRequiredModuleNames...) |
| 231 | hostRequired = append(hostRequired, fi.hostRequiredModuleNames...) |
| 232 | } |
| 233 | |
| 234 | if len(required) > 0 { |
| 235 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(required, " ")) |
| 236 | } |
| 237 | if len(targetRequired) > 0 { |
| 238 | fmt.Fprintln(w, "LOCAL_TARGET_REQUIRED_MODULES +=", strings.Join(targetRequired, " ")) |
| 239 | } |
| 240 | if len(hostRequired) > 0 { |
| 241 | fmt.Fprintln(w, "LOCAL_HOST_REQUIRED_MODULES +=", strings.Join(hostRequired, " ")) |
| 242 | } |
| 243 | } |
| 244 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 245 | func (a *apexBundle) androidMkForType() android.AndroidMkData { |
| 246 | return android.AndroidMkData{ |
| 247 | Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) { |
| 248 | moduleNames := []string{} |
| 249 | apexType := a.properties.ApexType |
| 250 | if a.installable() { |
| 251 | apexName := proptools.StringDefault(a.properties.Apex_name, name) |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame^] | 252 | moduleNames = a.androidMkForFiles(w, name, apexName, moduleDir) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | if apexType == flattenedApex { |
| 256 | // Only image APEXes can be flattened. |
| 257 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
| 258 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 259 | fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix) |
| 260 | if len(moduleNames) > 0 { |
| 261 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(moduleNames, " ")) |
| 262 | } |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 263 | a.writeRequiredModules(w) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 264 | fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)") |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 265 | |
| 266 | } else { |
| 267 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
| 268 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 269 | fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix) |
| 270 | fmt.Fprintln(w, "LOCAL_MODULE_CLASS := ETC") // do we need a new class? |
| 271 | fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", a.outputFile.String()) |
| 272 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String()) |
| 273 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", name+apexType.suffix()) |
| 274 | fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE :=", !a.installable()) |
Jaewoong Jung | 7abcf8e | 2019-12-19 17:32:06 -0800 | [diff] [blame] | 275 | fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(a.overridableProperties.Overrides, " ")) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 276 | if len(moduleNames) > 0 { |
| 277 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(moduleNames, " ")) |
| 278 | } |
Jiyong Park | 956305c | 2020-01-09 12:32:06 +0900 | [diff] [blame] | 279 | if len(a.requiredDeps) > 0 { |
| 280 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(a.requiredDeps, " ")) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 281 | } |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 282 | a.writeRequiredModules(w) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 283 | var postInstallCommands []string |
| 284 | if a.prebuiltFileToDelete != "" { |
| 285 | postInstallCommands = append(postInstallCommands, "rm -rf "+ |
| 286 | filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete)) |
| 287 | } |
| 288 | // For unflattened apexes, compat symlinks are attached to apex package itself as LOCAL_POST_INSTALL_CMD |
| 289 | postInstallCommands = append(postInstallCommands, a.compatSymlinks...) |
| 290 | if len(postInstallCommands) > 0 { |
| 291 | fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && ")) |
| 292 | } |
Jiyong Park | 19972c7 | 2020-01-28 20:05:29 +0900 | [diff] [blame] | 293 | |
| 294 | if a.mergedNotices.Merged.Valid() { |
| 295 | fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", a.mergedNotices.Merged.Path().String()) |
| 296 | } |
| 297 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 298 | fmt.Fprintln(w, "include $(BUILD_PREBUILT)") |
| 299 | |
| 300 | if apexType == imageApex { |
| 301 | fmt.Fprintln(w, "ALL_MODULES.$(LOCAL_MODULE).BUNDLE :=", a.bundleModuleFile.String()) |
| 302 | } |
Jiyong Park | 3a1602e | 2020-01-14 14:39:19 +0900 | [diff] [blame] | 303 | |
| 304 | if a.installedFilesFile != nil { |
| 305 | goal := "droidcore" |
| 306 | distFile := name + "-installed-files.txt" |
| 307 | fmt.Fprintln(w, ".PHONY:", goal) |
| 308 | fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n", |
| 309 | goal, a.installedFilesFile.String(), distFile) |
| 310 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 311 | } |
| 312 | }} |
| 313 | } |