xref: /aosp_15_r20/external/pdfium/testing/gmock/BUILD.gn (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1# Copyright 2018 The PDFium 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