xref: /aosp_15_r20/external/cronet/testing/gmock/BUILD.gn (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1# Copyright 2014 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# The file/directory layout of Google Test is not yet considered stable. Until
6# it stabilizes, Chromium code MUST use this target instead of reaching directly
7# into //third_party/googletest.
8
9source_set("gmock") {
10  testonly = true
11  sources = [
12    "include/gmock/gmock-actions.h",
13    "include/gmock/gmock-matchers.h",
14    "include/gmock/gmock.h",
15  ]
16  public_deps = [ "//third_party/googletest:gmock" ]
17}
18
19# The file/directory layout of Google Test is not yet considered stable. Until
20# it stabilizes, Chromium code MUST use this target instead of reaching directly
21# into //third_party/googletest.
22source_set("gmock_main") {
23  testonly = true
24  deps = [ "//third_party/googletest:gmock_main" ]
25}
26