• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 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"""PDFium implementation of //build/skia_gold_common/skia_gold_properties.py."""
5
6import pdfium_root
7from skia_gold_common import skia_gold_properties
8
9
10class PDFiumSkiaGoldProperties(skia_gold_properties.SkiaGoldProperties):
11
12  def _GetGitRepoDirectory(self):
13    root_finder = pdfium_root.RootDirectoryFinder()
14    return root_finder.pdfium_root
15