| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 }, | 82 }, |
| 83 'link_settings': { | 83 'link_settings': { |
| 84 'ldflags': [ | 84 'ldflags': [ |
| 85 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk-
2.0)', | 85 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk-
2.0)', |
| 86 ], | 86 ], |
| 87 'libraries': [ | 87 'libraries': [ |
| 88 '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)', | 88 '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 }, | 91 }, |
| 92 { |
| 93 'target_name': 'gconf', |
| 94 'type': 'settings', |
| 95 'direct_dependent_settings': { |
| 96 'cflags': [ |
| 97 '<!@(python pkg_config_wrapper.py --cflags gconf-2.0)', |
| 98 ], |
| 99 }, |
| 100 'link_settings': { |
| 101 'ldflags': [ |
| 102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon
f-2.0)', |
| 103 ], |
| 104 'libraries': [ |
| 105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)', |
| 106 ], |
| 107 }, |
| 108 }, |
| 92 ], | 109 ], |
| 93 } | 110 } |
| OLD | NEW |