| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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': 'gtk', | 8 'target_name': 'gtk', |
| 9 'type': 'settings', | 9 'type': 'settings', |
| 10 'direct_dependent_settings': { | 10 'direct_dependent_settings': { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 }, | 99 }, |
| 100 'link_settings': { | 100 'link_settings': { |
| 101 'ldflags': [ | 101 'ldflags': [ |
| 102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon
f-2.0)', | 102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon
f-2.0)', |
| 103 ], | 103 ], |
| 104 'libraries': [ | 104 'libraries': [ |
| 105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)', | 105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)', |
| 106 ], | 106 ], |
| 107 }, | 107 }, |
| 108 }, | 108 }, |
| 109 { |
| 110 'target_name': 'gthread', |
| 111 'type': 'settings', |
| 112 'direct_dependent_settings': { |
| 113 'cflags': [ |
| 114 '<!@(python pkg_config_wrapper.py --cflags gthread-2.0)', |
| 115 ], |
| 116 }, |
| 117 'link_settings': { |
| 118 'ldflags': [ |
| 119 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gthr
ead-2.0)', |
| 120 ], |
| 121 'libraries': [ |
| 122 '<!@(python pkg_config_wrapper.py --libs-only-l gthread-2.0)', |
| 123 ], |
| 124 }, |
| 125 }, |
| 109 ], | 126 ], |
| 110 } | 127 } |
| OLD | NEW |