Home
last modified time | relevance | path

Searched refs:build_file_path (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/tools_webrtc/presubmit_checks_lib/
Dcheck_package_boundaries.py58 def _CheckBuildFile(build_file_path, packages): argument
63 package = os.path.dirname(build_file_path)
66 build_file_contents = _ReadFileAndPrependLines(build_file_path)
76 yield PackageBoundaryViolation(build_file_path,
85 for build_file_path in build_files:
86 assert build_file_path.startswith(root_dir)
91 for build_file_path in build_files:
92 messages.extend(_CheckBuildFile(build_file_path, packages))
Dcheck_package_boundaries_test.py37 build_file_path = os.path.relpath(violation.build_file_path, test_dir)
38 build_file_path = build_file_path.replace(os.path.sep, '/')
39 messages.append(violation._replace(build_file_path=build_file_path))
/external/perfetto/bazel/
Dproto_gen.bzl41 last_slash_idx = ctx.build_file_path.rfind("/")
42 strip_base_path = ctx.build_file_path[:last_slash_idx + 1]