Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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: |
| OLD | NEW |