Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: slave/Makefile

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Fix launch_slaves, remove more stuff Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # -*- makefile -*-
2
3 CWD := $(shell pwd)
4
5 THIRDPARTY := $(CWD)/../third_party
6 CHROMIUM_BUILDBOT := $(THIRDPARTY)/chromium_buildbot
7 PUBLICCONFIG_DIR := $(CHROMIUM_BUILDBOT)/site_config
8 PRIVATECONFIG_DIR ?= $(CWD)/../site_config
9 TESTING_MASTER ?= Skia
10
11 ALL_TARGETS := start stop reconfig log wait restart
12
13 .PHONY: $(ALL_TARGETS)
14 $(ALL_TARGETS)::
15 echo "fake bot_password to quiet run_slave.py" >$(PUBLICCONFIG_DIR)/.bot _password
16 TESTING_MASTER=$(TESTING_MASTER) PYTHONPATH=$(PRIVATECONFIG_DIR) $(MAKE) -C $(CHROMIUM_BUILDBOT)/slave $@
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698