HomeSort by relevance Sort by last modified time
    Searched refs:buildbot (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
__init__.py 5 from .buildbot import BuildBot, Builder, Build
buildbot_unittest.py 32 from webkitpy.common.net.buildbot import BuildBot, Builder, Build
54 self.buildbot = BuildBot()
55 self.builder = Builder(u"Test Builder \u2661", self.buildbot)
85 buildbot = BuildBot()
86 builder = Builder(u"Test Builder \u2661", buildbot)
97 buildbot._fetch_build_dictionary = mock_fetch_build_dictionary
159 buildbot = BuildBot(
    [all...]
chromiumbuildbot.py 30 from webkitpy.common.net.buildbot.buildbot import Builder, BuildBot
45 class ChromiumBuildBot(BuildBot):
buildbot.py 47 def __init__(self, name, buildbot):
49 self._buildbot = buildbot
101 # Buildbot uses any nubmer other than 0 to mean fail. Since we fetch with
137 # Better would be to ask buildbot through some sort of API.
173 # Builds for old revisions with fail to lookup via buildbot's json api.
218 class BuildBot(object):
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
active_issues.js 7 window.buildbot = window.buildbot || {};
9 buildbot.ActiveIssues = function() {
14 buildbot.ActiveIssues.prototype = {
46 buildbot.getActiveIssues = function() {
48 if (!background.buildbot.hasOwnProperty("activeIssues"))
49 background.buildbot.activeIssues = new buildbot.ActiveIssues;
51 return background.buildbot.activeIssues;
prefs.js 7 window.buildbot = window.buildbot || {};
9 buildbot.PrefStore = function() {
14 buildbot.PrefStore.prototype = {
options.js 7 window.buildbot = window.buildbot || {};
9 var prefs = new buildbot.PrefStore;
utils.js 7 window.buildbot = window.buildbot || {};
9 buildbot.requestURL =
popup.js 17 result = buildbot.RUNNING;
20 case buildbot.RUNNING:
23 case buildbot.SUCCESS:
26 case buildbot.WARNINGS:
29 case buildbot.FAILURE:
32 case buildbot.SKIPPED:
35 case buildbot.EXCEPTION:
38 case buildbot.RETRY:
41 case buildbot.NOT_STARTED:
75 if (fullTryJob.results == buildbot.FAILURE && fullTryJob.text)
    [all...]
bg.js 18 var prefs = new buildbot.PrefStore;
38 buildbot.requestURL(statusHistoryURL, "text", function(text) {
120 buildbot.requestURL(statusURL,
128 // the build number is less than or equal to this number, the buildbot
143 buildbot.requestURL(tryJobURL, "json", function(tryJobResult) {
173 buildbot.requestURL(patchURL, "json", function(patch) {
205 var activeIssues = buildbot.getActiveIssues();
209 buildbot.requestURL(issueURL, "json", function(issue) {
241 buildbot.requestURL(url, "json", updateTryStatus);
251 buildbot.requestURL(usernameScrapingURL, "text", function(text)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 37 from webkitpy.common.net import buildbot, web namespace
38 from webkitpy.common.net.buildbot.chromiumbuildbot import ChromiumBuildBot
56 self.buildbot = buildbot.BuildBot()
142 return self.buildbot
host_mock.py 31 from webkitpy.common.net.buildbot.buildbot_mock import MockBuildBot
52 self.buildbot = MockBuildBot()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
mocktool.py 32 from webkitpy.common.net.buildbot.buildbot_mock import MockBuildBot
  /sdk/eclipse/scripts/
build_plugins.sh 86 BASE_DIR=/buildbot/eclipse-android
  /external/chromium_org/chrome/test/nacl_test_injection/
buildbot_chrome_nacl_stage.py 19 # Copied from buildbot/buildbot_lib.py
30 # Copied from buildbot/buildbot_lib.py
164 if options.buildbot is not None:
165 scons.append('buildbot=%s' % (options.buildbot,))
256 parser.add_option('--buildbot', dest='buildbot', action='store',
258 help='Value passed to scons as buildbot= option.')
  /external/chromium_org/v8/tools/
run-tests.py 92 result.add_option("--buildbot",
185 if options.buildbot:
282 if options.buildbot:
run-deopt-fuzzer.py 157 result.add_option("--buildbot",
338 if options.buildbot:
  /external/chromium_org/build/android/buildbot/
bb_device_status_check.py 155 urllib.quote('Buildbot: %s %s\n'
180 from_address = 'buildbot@chromium.org'
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
builders.js 56 // FIXME: Encode whether the test uploads to the server in the buildbot json so
57 // we can include that data in buildbot.jsonp and not need to do ugly heuristics
loader.js 179 // FIXME: Grab which bots run which tests directly from the buildbot JSON instead.
  /external/chromium_org/v8/
Makefile 253 buildbot:
  /external/chromium_org/chrome/test/functional/perf/
endure_result_parser.py 8 This script connects via HTTP to a buildbot master in order to scrape and parse
23 This script accepts either a URL or a local path as a buildbot location.
26 When a URL is given, it gets buildbot logs from the buildbot builders URL
29 When a local path is given, it gets buildbot logs from buildbot's internal
30 files in the directory e.g. /home/chrome-bot/buildbot.
484 # Buildbot log files are stored in the netstring format.
535 from buildbot.status import builder
674 # Do not give up. The first files might be removed by buildbot
    [all...]
  /external/chromium_org/tools/code_coverage/
coverage_posix.py 28 If not specified (e.g. buildbot) we will try and figure it out based on
60 other scripts launched by buildbot. Example of another script
61 launched by buildbot:
62 http://src.chromium.org/viewvc/chrome/trunk/tools/buildbot/scripts/slave/runtest.py
65 This is used by buildbot scripts to help us find the output directory.
68 --build-dir=DIR: According to buildbot comments, this is the name of
69 the directory within the buildbot working directory in which the
73 This is used by buildbot scripts to help us find the output directory.
420 # To make sure that the buildbot don't kill us if we run too long
423 # far to the output console to make the buildbot know we are making som
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
rebaseline_unittest.py 33 from webkitpy.common.net.buildbot.buildbot_mock import MockBuilder
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm     [all...]

Completed in 508 milliseconds