File: qtwebengine_utils.py

package info (click to toggle)
qt6-webengine 6.9.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,111,664 kB
  • sloc: cpp: 21,437,331; ansic: 8,087,114; javascript: 2,747,888; python: 856,615; asm: 848,149; xml: 616,344; java: 222,847; sh: 105,209; objc: 99,183; perl: 70,870; cs: 51,103; sql: 40,087; makefile: 26,384; pascal: 25,140; fortran: 24,137; tcl: 9,609; yacc: 8,132; php: 7,051; lisp: 3,462; lex: 1,327; ruby: 914; awk: 339; csh: 120; sed: 36
file content (27 lines) | stat: -rwxr-xr-x 934 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
# Copyright (C) 2016 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import os
import subprocess
import sys

def getChromiumSrcDir():

  saved_cwd = os.getcwd()
  qtwebengine_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))

  os.chdir(qtwebengine_root)
  try:
    chrome_src = subprocess.check_output("git config qtwebengine.chromiumsrcdir", shell=True).strip()
  except subprocess.CalledProcessError:
    chrome_src = None
  os.chdir(saved_cwd)

  if chrome_src:
    chrome_src = os.path.join(qtwebengine_root, chrome_src)
    print('Using external chromium sources specified in git config qtwebengine.chromiumsrcdir: ' + chrome_src)
  if not chrome_src or not os.path.isdir(chrome_src):
    chrome_src = os.path.normpath(os.path.join(qtwebengine_root, 'src/3rdparty/chromium'))
  return os.path.normcase(chrome_src)