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

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

Issue 12294017: Linux: adjust include path for system jsoncpp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 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 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 'variables': { 6 'variables': {
7 'use_system_jsoncpp%': 0, 7 'use_system_jsoncpp%': 0,
8 }, 8 },
9 'conditions': [ 9 'conditions': [
10 ['use_system_jsoncpp==0', { 10 ['use_system_jsoncpp==0', {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'json/forwards.h', 59 'json/forwards.h',
60 'json/json.h', 60 'json/json.h',
61 'json/reader.h', 61 'json/reader.h',
62 'json/value.h', 62 'json/value.h',
63 'json/writer.h', 63 'json/writer.h',
64 ], 64 ],
65 }, 65 },
66 'includes': [ 66 'includes': [
67 '../../build/shim_headers.gypi', 67 '../../build/shim_headers.gypi',
68 ], 68 ],
69 'direct_dependent_settings': {
70 'include_dirs': [
71 '/usr/include/jsoncpp',
tommi (sloooow) - chröme 2013/02/19 10:30:48 Would it make sense to have an OS check before add
Paweł Hajdan Jr. 2013/02/19 10:37:08 When non-unices start shipping FOSS libraries as p
tommi (sloooow) - chröme 2013/02/19 10:54:28 Nope, I'm not aware of it. I only stumbled across
72 ],
73 },
69 'link_settings': { 74 'link_settings': {
70 'libraries': [ 75 'libraries': [
71 '-ljsoncpp', 76 '-ljsoncpp',
72 ], 77 ],
73 }, 78 },
74 } 79 }
75 ], 80 ],
76 }], 81 }],
77 ], 82 ],
78 } 83 }
79 84
80 # Local Variables: 85 # Local Variables:
81 # tab-width:2 86 # tab-width:2
82 # indent-tabs-mode:nil 87 # indent-tabs-mode:nil
83 # End: 88 # End:
84 # vim: set expandtab tabstop=2 shiftwidth=2: 89 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698