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

Side by Side Diff: client/site_tests/login_OwnershipRetaken/src/Makefile

Issue 6880288: [autotest] Add test for the re-taking of ownership after the owner key is lost (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: improve comment Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 ifndef SYSROOT
6 $(error Define SYSROOT)
7 endif
8
9 OUT_DIR ?= .
10 PROTO_PATH = $(SYSROOT)/usr/include/proto
11 PROTO_DEFS = $(PROTO_PATH)/chrome_device_policy.proto \
12 $(PROTO_PATH)/device_management_backend.proto
13 PROTO_BINDINGS = $(OUT_DIR)/chrome_device_policy_pb2.py \
14 $(OUT_DIR)/device_management_backend_pb2.py
15
16 all: $(PROTO_BINDINGS)
17
18 $(PROTO_BINDINGS): $(PROTO_DEFS)
19 protoc --proto_path=$(PROTO_PATH) --python_out=$(OUT_DIR) $(PROTO_DEFS)
20
21 clean:
22 rm -f $(PROTO_BINDINGS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698