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

Side by Side Diff: configure.ac

Issue 3528016: Cashew: implement backend usage API (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cashew.git
Patch Set: Fix code review nits and remove hardcoded usage URLs Created 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/Makefile.am » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 AC_INIT([cashew], [0.0.1], [chromium-os-dev@chromium.org]) 5 AC_INIT([cashew], [0.0.1], [chromium-os-dev@chromium.org])
6 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) 6 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
7 AC_PROG_CXX 7 AC_PROG_CXX
8 # TODO(vlaviano): check for libbase
9 PKG_CHECK_MODULES([CURL], [libcurl])
8 PKG_CHECK_MODULES([DBUS_CPP], [dbus-c++-1]) 10 PKG_CHECK_MODULES([DBUS_CPP], [dbus-c++-1])
9 # TODO(vlaviano): check for gflags 11 # TODO(vlaviano): check for gflags
12 PKG_CHECK_MODULES([GLIB], [glib-2.0])
10 PKG_CHECK_MODULES([GLOG], [libglog]) 13 PKG_CHECK_MODULES([GLOG], [libglog])
11 AC_CONFIG_HEADERS([config.h]) 14 AC_CONFIG_HEADERS([config.h])
12 AC_CONFIG_FILES([ 15 AC_CONFIG_FILES([
13 Makefile 16 Makefile
14 extrospection/Makefile 17 extrospection/Makefile
15 introspection/Makefile 18 introspection/Makefile
16 src/Makefile 19 src/Makefile
17 ]) 20 ])
18 AC_OUTPUT 21 AC_OUTPUT
OLDNEW
« no previous file with comments | « no previous file | src/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698