• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 The Chromium Authors. All rights reserved.
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
9import("//build_overrides/build.gni")
10
11source_set("gmock") {
12  testonly = true
13  sources = [
14    "include/gmock/gmock-actions.h",
15    "include/gmock/gmock-matchers.h",
16    "include/gmock/gmock.h",
17  ]
18  public_deps = [ "//third_party/googletest:gmock" ]
19}
20
21# The file/directory layout of Google Test is not yet considered stable. Until
22# it stabilizes, Chromium code MUST use this target instead of reaching directly
23# into //third_party/googletest.
24source_set("gmock_main") {
25  testonly = true
26  deps = [ "//third_party/googletest:gmock_main" ]
27}
28