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

Side by Side Diff: third_party/jsoncpp/jsoncpp.gyp

Issue 8251003: Add jsoncpp in DEPS and the gyp file to build jsoncpp in chromium. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 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 | « third_party/jsoncpp/README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2011 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': 'jsoncpp',
9 'type': 'static_library',
10 'defines': [
11 'JSON_USE_EXCEPTION=0',
12 ],
13 'sources': [
14 'source/include/json/assertions.h',
15 'source/include/json/autolink.h',
16 'source/include/json/config.h',
17 'source/include/json/features.h',
18 'source/include/json/forwards.h',
19 'source/include/json/json.h',
20 'source/include/json/reader.h',
21 'source/include/json/value.h',
22 'source/include/json/writer.h',
23 'source/src/lib_json/json_batchallocator.h',
24 'source/src/lib_json/json_reader.cpp',
25 'source/src/lib_json/json_tool.h',
26 'source/src/lib_json/json_value.cpp',
27 'source/src/lib_json/json_writer.cpp',
28 ],
29 'include_dirs': [
30 'source/include/',
31 ],
32 'direct_dependent_settings': {
33 'include_dirs': [
34 'source/include/',
35 ],
36 },
37 },
38 ],
39 }
40
41 # Local Variables:
42 # tab-width:2
43 # indent-tabs-mode:nil
44 # End:
45 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « third_party/jsoncpp/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698