BUILD.gn 866 B

12345678910111213141516171819202122232425
  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. # The file/directory layout of Google Test is not yet considered stable. Until
  5. # it stabilizes, Chromium code MUST use this target instead of reaching directly
  6. # into //third_party/googletest.
  7. source_set("gmock") {
  8. testonly = true
  9. sources = [
  10. "include/gmock/gmock-actions.h",
  11. "include/gmock/gmock-matchers.h",
  12. "include/gmock/gmock.h",
  13. ]
  14. public_deps = [ "//third_party/googletest:gmock" ]
  15. }
  16. # The file/directory layout of Google Test is not yet considered stable. Until
  17. # it stabilizes, Chromium code MUST use this target instead of reaching directly
  18. # into //third_party/googletest.
  19. source_set("gmock_main") {
  20. testonly = true
  21. deps = [ "//third_party/googletest:gmock_main" ]
  22. }