Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit de8b8ea

Browse files
committed
use pyyaml from deps
1 parent b288e8a commit de8b8ea

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

DEPS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ deps = {
138138
'src/third_party/spirv_cross':
139139
Var('github_git') + '/KhronosGroup/SPIRV-Cross.git' + '@' + '418542eaefdb609f548d25a1e3962fb69d80da63',
140140

141+
'src/third_party/pyyaml':
142+
Var('fuchsia_git') + '/third_party/pyyaml' + '@' + '0d71b7df69ec44d1e8cfd81dc580a9612c0e5e21',
141143

142144
# Chromium-style
143145
#

tools/fuchsia/sdk/find_dart_libraries.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313

1414
import argparse
1515
import json
16-
import yaml
1716
import os
1817
import sys
1918
import pkg_resources
2019

20+
ENGINE_SRC_DIR = os.environ["ENGINE_SRC_DIR"]
21+
sys.path += [os.path.join(ENGINE_SRC_DIR, 'third_party', 'pyyaml', 'lib3')]
22+
import yaml
2123

2224
def find_package(root, local_paths, package, version):
2325
"""Return the package target if found with at least this version"""

0 commit comments

Comments
 (0)