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

Side by Side Diff: client/deps/ibusclient/src/Makefile

Issue 1297004: Add desktopui_IBusTest, that checks if IBus is working properly. (Closed)
Patch Set: be explicit about the user name Created 10 years, 9 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
« no previous file with comments | « client/deps/ibusclient/ibusclient.py ('k') | client/deps/ibusclient/src/ibusclient.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 CXXFLAGS = -g -Wall -Werror \
6 -I$(SYSROOT)/usr/include/dbus-1.0 \
7 -I$(SYSROOT)/usr/include/glib-2.0 \
8 -I$(SYSROOT)/usr/include/ibus-1.0 \
9 -I$(SYSROOT)/usr/lib/dbus-1.0/include \
10 -I$(SYSROOT)/usr/lib/glib-2.0/include \
11
12 LDFLAGS = -L$(SYSROOT)/usr/lib \
13 -libus -lgobject-2.0 -ldbus-1 -lpthread -lrt -lglib-2.0
14
15 ibusclient: ibusclient.cc
16 $(CXX) $(LDFLAGS) $(CXXFLAGS) $^ -o ../$@
OLDNEW
« no previous file with comments | « client/deps/ibusclient/ibusclient.py ('k') | client/deps/ibusclient/src/ibusclient.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698