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

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

Issue 6759063: [autotest] Update login_OwnershipApi to use protobufs (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: Add Makefile (duh) and fix style. Created 9 years, 8 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 # Requires $(SYSROOT) and $(OUT_DIR) to be set.
petkov 2011/04/04 17:48:01 You could: ifndef SYSROOT $(error Define SYSROO
Chris Masone 2011/04/04 18:00:02 Done.
6
7 PROTO_PATH = $(SYSROOT)/usr/include/proto
8 PROTO_DEFS = $(PROTO_PATH)/device_management_backend.proto \
9 $(PROTO_PATH)/device_management_local.proto
10 PROTO_BINDINGS = $(OUT_DIR)/device_management_backend_pb2.py \
11 $(OUT_DIR)/device_management_local_pb2.py
12
13 all: $(PROTO_BINDINGS)
14
15 $(PROTO_BINDINGS): $(PROTO_DEFS)
16 protoc --proto_path=$(PROTO_PATH) --python_out=$(OUT_DIR) $(PROTO_DEFS)
17
18 clean:
19 rm -f $(PROTO_BINDINGS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698