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

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

Issue 3110010: [autotest] Update to compile against new libchrome (Closed) Base URL: http://src.chromium.org/git/autotest.git
Patch Set: Created 10 years, 4 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
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 SRCS = platform_MiniJailReadOnlyFS.cc 5 SRCS = platform_MiniJailReadOnlyFS.cc
6 TARGET = ../platform_MiniJailReadOnlyFS 6 TARGET = ../platform_MiniJailReadOnlyFS
7 7
8 LDFLAGS = -lbase -lrt 8 LDFLAGS = -lbase -lglib-2.0 -lrt
9 9
10 all: $(TARGET) 10 all: $(TARGET)
11 11
12 $(TARGET): $(SRCS) 12 $(TARGET): $(SRCS)
13 $(CXX) -O3 -o $@ $^ -Wall $(LDFLAGS) 13 $(CXX) -O3 -o $@ $^ -Wall $(LDFLAGS)
14 14
15 clean: 15 clean:
16 $(RM) $(TARGET) 16 $(RM) $(TARGET)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698