• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2020-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
14config("hcpptest_private_config") {
15  visibility = [ ":*" ]
16  include_dirs = [ "//third_party/googletest/googletest" ]
17  ldflags = [ "-lstdc++" ]
18}
19
20config("hcpptest_config") {
21  include_dirs = [ "//third_party/googletest/googletest/include" ]
22  ldflags = [
23    "-lstdc++",
24    "-Wl,-rpath=./lib",
25    "-lm",
26  ]
27}
28
29static_library("hcpptest") {
30  public = [
31    "//third_party/googletest/googletest/include/gtest/gtest-spi.h",
32    "//third_party/googletest/googletest/include/gtest/gtest.h",
33  ]
34  sources = [
35    "//third_party/googletest/googletest/include/gtest/gtest-death-test.h",
36    "//third_party/googletest/googletest/include/gtest/gtest-message.h",
37    "//third_party/googletest/googletest/include/gtest/gtest-param-test.h",
38    "//third_party/googletest/googletest/include/gtest/gtest-printers.h",
39    "//third_party/googletest/googletest/include/gtest/gtest-test-part.h",
40    "//third_party/googletest/googletest/include/gtest/gtest-typed-test.h",
41    "//third_party/googletest/googletest/include/gtest/gtest_pred_impl.h",
42    "//third_party/googletest/googletest/include/gtest/gtest_prod.h",
43    "//third_party/googletest/googletest/include/gtest/hwext/gtest-ext.h",
44    "//third_party/googletest/googletest/include/gtest/hwext/gtest-filter.h",
45    "//third_party/googletest/googletest/include/gtest/hwext/gtest-tag.h",
46    "//third_party/googletest/googletest/include/gtest/hwext/utils.h",
47    "//third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h",
48    "//third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h",
49    "//third_party/googletest/googletest/include/gtest/internal/custom/gtest.h",
50    "//third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h",
51    "//third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h",
52    "//third_party/googletest/googletest/include/gtest/internal/gtest-internal.h",
53    "//third_party/googletest/googletest/include/gtest/internal/gtest-linked_ptr.h",
54    "//third_party/googletest/googletest/include/gtest/internal/gtest-param-util-generated.h",
55    "//third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h",
56    "//third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h",
57    "//third_party/googletest/googletest/include/gtest/internal/gtest-port.h",
58    "//third_party/googletest/googletest/include/gtest/internal/gtest-string.h",
59    "//third_party/googletest/googletest/include/gtest/internal/gtest-tuple.h",
60    "//third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h",
61    "//third_party/googletest/googletest/src/gtest-death-test.cc",
62    "//third_party/googletest/googletest/src/gtest-filepath.cc",
63    "//third_party/googletest/googletest/src/gtest-internal-inl.h",
64    "//third_party/googletest/googletest/src/gtest-port.cc",
65    "//third_party/googletest/googletest/src/gtest-printers.cc",
66    "//third_party/googletest/googletest/src/gtest-test-part.cc",
67    "//third_party/googletest/googletest/src/gtest-typed-test.cc",
68    "//third_party/googletest/googletest/src/gtest.cc",
69    "//third_party/googletest/googletest/src/hwext/gtest-ext.cc",
70    "//third_party/googletest/googletest/src/hwext/gtest-filter.cc",
71    "//third_party/googletest/googletest/src/hwext/gtest-tag.cc",
72    "//third_party/googletest/googletest/src/hwext/gtest-utils.cc",
73  ]
74  public_configs = [ ":hcpptest_config" ]
75  configs += [ ":hcpptest_private_config" ]
76  defines = [ "GTEST_HAS_CLONE=0" ]
77}
78
79static_library("hcpptest_main") {
80  sources = [ "//third_party/googletest/googletest/src/gtest_main.cc" ]
81  public_deps = [ ":hcpptest" ]
82}
83
84config("gmock_private_config") {
85  visibility = [ ":*" ]
86  include_dirs = [ "//third_party/googletest/googlemock" ]
87}
88
89config("gmock_config") {
90  include_dirs = [ "//third_party/googletest/googlemock/include" ]
91
92  cflags_cc = [
93    # The MOCK_METHODn() macros do not specify "override", which triggers this
94    # warning in users: "error: 'Method' overrides a member function but is not
95    # marked 'override' [-Werror,-Winconsistent-missing-override]". Suppress
96    # these warnings until https://github.com/google/googletest/issues/533 is
97    # fixed.
98    "-Wno-inconsistent-missing-override",
99  ]
100}
101
102static_library("gmock") {
103  public = [ "//third_party/googletest/googlemock/include/gmock/gmock.h" ]
104  sources = [
105    "//third_party/googletest/googlemock/include/gmock/gmock-actions.h",
106    "//third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h",
107    "//third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h",
108    "//third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h",
109    "//third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h",
110    "//third_party/googletest/googlemock/include/gmock/gmock-generated-nice-strict.h",
111    "//third_party/googletest/googlemock/include/gmock/gmock-matchers.h",
112    "//third_party/googletest/googlemock/include/gmock/gmock-more-actions.h",
113    "//third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h",
114    "//third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h",
115    "//third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h",
116    "//third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h",
117    "//third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h",
118    "//third_party/googletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h",
119    "//third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h",
120    "//third_party/googletest/googlemock/include/gmock/internal/gmock-port.h",
121    "//third_party/googletest/googlemock/src/gmock-cardinalities.cc",
122    "//third_party/googletest/googlemock/src/gmock-internal-utils.cc",
123    "//third_party/googletest/googlemock/src/gmock-matchers.cc",
124    "//third_party/googletest/googlemock/src/gmock-spec-builders.cc",
125    "//third_party/googletest/googlemock/src/gmock.cc",
126  ]
127  public_configs = [ ":gmock_config" ]
128  configs += [ ":gmock_private_config" ]
129  deps = [ ":hcpptest" ]
130}
131
132static_library("gmock_main") {
133  sources = [ "//third_party/googletest/googlemock/src/gmock_main.cc" ]
134  public_deps = [
135    ":gmock",
136    ":hcpptest",
137  ]
138}
139