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

Side by Side Diff: components/leveldb_proto.gypi

Issue 330833002: Extract protobuf database into a new 'leveldb_proto' component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 6 years, 6 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 | « components/dom_distiller/standalone/content_extractor.cc ('k') | components/leveldb_proto/DEPS » ('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) 2012 The Chromium 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 {
6 'targets': [
7 {
8 'target_name': 'leveldb_proto',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
16 ],
17 'sources': [
18 'leveldb_proto/leveldb_database.cc',
19 'leveldb_proto/leveldb_database.h',
20 'leveldb_proto/proto_database.h',
21 'leveldb_proto/proto_database_impl.h',
22 ]
23 },
24 {
25 'target_name': 'leveldb_proto_test_support',
26 'type': 'static_library',
27 'dependencies': [
28 'leveldb_proto',
29 ],
30 'include_dirs': [
31 '..',
32 ],
33 'sources': [
34 'leveldb_proto/testing/fake_db.h',
35 'leveldb_proto/testing/proto/test.proto',
36 ],
37 'variables': {
38 'proto_in_dir': 'leveldb_proto/testing/proto',
39 'proto_out_dir': 'components/leveldb_proto/testing/proto',
40 },
41 'includes': [ '../build/protoc.gypi' ]
42 },
43 ],
44 }
OLDNEW
« no previous file with comments | « components/dom_distiller/standalone/content_extractor.cc ('k') | components/leveldb_proto/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698