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

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

Issue 9188042: Create a local mod (based on jsoncpp trunk r248) to remove the static initialization caused by th... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 11 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') | third_party/jsoncpp/overrides/include/json/value.h » ('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) 2011 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'jsoncpp', 8 'target_name': 'jsoncpp',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines': [ 10 'defines': [
11 'JSON_USE_EXCEPTION=0', 11 'JSON_USE_EXCEPTION=0',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 'source/include/json/assertions.h', 14 'source/include/json/assertions.h',
15 'source/include/json/autolink.h', 15 'source/include/json/autolink.h',
16 'source/include/json/config.h', 16 'source/include/json/config.h',
17 'source/include/json/features.h', 17 'source/include/json/features.h',
18 'source/include/json/forwards.h', 18 'source/include/json/forwards.h',
19 'source/include/json/json.h', 19 'source/include/json/json.h',
20 'source/include/json/reader.h', 20 'source/include/json/reader.h',
21 'source/include/json/value.h', 21 'source/include/json/value.h',
juberti1 2012/01/12 19:24:23 does this need to use the override?
Ronghua Wu (Left Chromium) 2012/01/12 19:33:10 Yes, done.
22 'source/include/json/writer.h', 22 'source/include/json/writer.h',
23 'source/src/lib_json/json_batchallocator.h', 23 'source/src/lib_json/json_batchallocator.h',
24 'source/src/lib_json/json_reader.cpp', 24 'source/src/lib_json/json_reader.cpp',
25 'source/src/lib_json/json_tool.h', 25 'source/src/lib_json/json_tool.h',
26 'source/src/lib_json/json_value.cpp', 26 'overrides/src/lib_json/json_value.cpp',
27 'source/src/lib_json/json_writer.cpp', 27 'source/src/lib_json/json_writer.cpp',
28 ], 28 ],
29 'include_dirs': [ 29 'include_dirs': [
30 'overrides/include/',
30 'source/include/', 31 'source/include/',
32 'source/src/lib_json/',
31 ], 33 ],
32 'direct_dependent_settings': { 34 'direct_dependent_settings': {
33 'include_dirs': [ 35 'include_dirs': [
36 'overrides/include/',
34 'source/include/', 37 'source/include/',
35 ], 38 ],
36 }, 39 },
37 }, 40 },
38 ], 41 ],
39 } 42 }
40 43
41 # Local Variables: 44 # Local Variables:
42 # tab-width:2 45 # tab-width:2
43 # indent-tabs-mode:nil 46 # indent-tabs-mode:nil
44 # End: 47 # End:
45 # vim: set expandtab tabstop=2 shiftwidth=2: 48 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « third_party/jsoncpp/README.chromium ('k') | third_party/jsoncpp/overrides/include/json/value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698