• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14import("//build/ohos.gni")
15
16group("build_module") {
17  deps = [
18    ":geocoding",
19    ":phonenumber_standard",
20  ]
21}
22config("phonenumber_config") {
23  include_dirs = [
24    "//third_party/abseil-cpp/abseil-cpp",
25    "//third_party/bounds_checking_function/include",
26    "//third_party/icu/icu4c/source/common",
27    "//third_party/icu/icu4c/source/i18n",
28    "//third_party/icu/icu4c/source",
29    "//third_party/libphonenumber/cpp/src",
30    "//third_party/protobuf/src",
31    "//third_party/protobuf/src/google",
32    "//third_party/protobuf/src/google/protobuf",
33  ]
34  cflags = [ "-Wno-implicit-fallthrough" ]
35  cflags_cc = [
36    "-DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS",
37    "-DI18N_PHONENUMBERS_USE_ICU_REGEXP",
38    "-Dphonenumber_shared_EXPORTS",
39    "-Wall",
40    "-fPIC",
41    "-U__ANDROID__",
42    "-Wno-sign-compare",
43    "-Wno-error=unused-parameter",
44    "-Wno-error=unused-const-variable",
45    "-Wno-error=unneeded-internal-declaration",
46    "-Wno-implicit-fallthrough",
47    "-Wno-deprecated-builtins",
48  ]
49}
50
51phonenumber_source = [
52  "src/phonenumbers/phonenumber.cc",
53  "src/phonenumbers/default_logger.cc",
54  "src/phonenumbers/phonenumbermatch.cc",
55  "src/phonenumbers/phonenumbermatcher.cc",
56  "src/phonenumbers/regexp_cache.cc",
57  "src/phonenumbers/phonemetadata.pb.cc",
58  "src/phonenumbers/string_byte_sink.cc",
59  "src/phonenumbers/asyoutypeformatter.cc",
60  "src/phonenumbers/phonenumberutil.cc",
61  "src/phonenumbers/regexp_adapter_icu.cc",
62  "src/phonenumbers/phonenumber.pb.cc",
63  "src/phonenumbers/base/strings/string_piece.cc",
64  "src/phonenumbers/alternate_format.cc",
65  "src/phonenumbers/shortnumberinfo.cc",
66  "src/phonenumbers/utf/unilib.cc",
67  "src/phonenumbers/utf/unicodetext.cc",
68  "src/phonenumbers/metadata.cc",
69  "src/phonenumbers/short_metadata.cc",
70  "src/phonenumbers/regex_based_matcher.cc",
71  "src/phonenumbers/logger.cc",
72  "src/phonenumbers/stringutil.cc",
73  "src/phonenumbers/unicodestring.cc",
74  "src/phonenumbers/utf/rune.c",
75]
76
77ohos_shared_library("phonenumber_standard") {
78  configs = [ ":phonenumber_config" ]
79  sources = phonenumber_source
80  deps = [
81    "//third_party/abseil-cpp:absl_base",
82    "//third_party/abseil-cpp:absl_strings",
83    "//third_party/bounds_checking_function:libsec_shared",
84    "//third_party/icu/icu4c:shared_icui18n",
85    "//third_party/icu/icu4c:shared_icuuc",
86    "//third_party/protobuf:protobuf_lite",
87  ]
88  defines = [
89    "I18N_PHONENUMBERS_USE_ALTERNATE_FORMATS",
90    "I18N_PHONENUMBERS_USE_ICU_REGEXP",
91    "HAVE_PTHREAD",
92  ]
93  innerapi_tags = [ "platformsdk_indirect" ]
94  part_name = "libphonenumber"
95  subsystem_name = "thirdparty"
96  ldflags = [ "-shared" ]
97  install_enable = true
98}
99
100ohos_shared_library("geocoding") {
101  configs = [ ":phonenumber_config" ]
102  sources = [
103    "src/phonenumbers/geocoding/area_code_map.cc",
104    "src/phonenumbers/geocoding/default_map_storage.cc",
105    "src/phonenumbers/geocoding/geocoding_data.cc",
106    "src/phonenumbers/geocoding/geocoding_warpper.cc",
107    "src/phonenumbers/geocoding/mapping_file_provider.cc",
108    "src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc",
109    "src/phonenumbers/phonenumber.pb.h",
110  ]
111  deps = [
112    "//third_party/bounds_checking_function:libsec_shared",
113    "//third_party/icu/icu4c:shared_icuuc",
114    "//third_party/libphonenumber/cpp:phonenumber_standard",
115  ]
116  defines = [
117    "I18N_PHONENUMBERS_USE_ALTERNATE_FORMATS",
118    "I18N_PHONENUMBERS_USE_ICU_REGEXP",
119    "HAVE_PTHREAD",
120  ]
121  part_name = "libphonenumber"
122  subsystem_name = "thirdparty"
123  ldflags = [ "-shared" ]
124  install_enable = true
125}
126