OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:target_platform
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/common/config/
build.py
28
def _should_file_trigger_build(
target_platform
, file):
40
assert(
target_platform
in ("mac-leopard", "mac-snowleopard", "win"))
110
base_platform =
target_platform
.split("-")[0]
115
return
target_platform
in platforms or base_platform in platforms
120
return
target_platform
in platforms or base_platform in platforms
127
return match.group("platform") in (
target_platform
, base_platform) or match.group("platform").startswith("%s-" %
target_platform
)
134
def should_build(
target_platform
, changed_files):
136
thus a build should be performed.
target_platform
should be one of the
138
return any(_should_file_trigger_build(
target_platform
, file) for file in changed_files
[
all
...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py
[
all
...]
Completed in 506 milliseconds