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 'includes': [ | 6 'includes': [ |
7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
8 ], | 8 ], |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
141 ], | 141 ], |
142 'direct_dependent_settings': { | 142 'direct_dependent_settings': { |
143 'defines': [ | 143 'defines': [ |
144 '__STDC_CONSTANT_MACROS', # FFmpeg uses INT64_C. | 144 '__STDC_CONSTANT_MACROS', # FFmpeg uses INT64_C. |
145 ], | 145 ], |
146 'include_dirs': [ | 146 'include_dirs': [ |
147 '<(output_root)', | 147 '<(output_root)', |
148 '../..', # The chromium 'src' directory. | 148 '../..', # The chromium 'src' directory. |
149 ], | 149 ], |
150 }, | 150 }, |
151 'link_settings': { | |
152 'libraries': [ | |
153 # We need dl for dlopen() and friends. | |
154 '-ldl', | |
TVL
2009/09/16 14:58:41
this is making the mac build grumpy, you needed co
| |
155 ], | |
156 }, | |
151 'actions': [ | 157 'actions': [ |
152 { | 158 { |
153 'action_name': 'generate_stubs', | 159 'action_name': 'generate_stubs', |
154 'inputs': [ | 160 'inputs': [ |
155 '<(generate_stubs_script)', | 161 '<(generate_stubs_script)', |
156 '<(extra_header)', | 162 '<(extra_header)', |
157 '<@(sig_files)', | 163 '<@(sig_files)', |
158 ], | 164 ], |
159 'outputs': [ | 165 'outputs': [ |
160 '<(intermediate_dir)/<(stubs_filename_root).cc', | 166 '<(intermediate_dir)/<(stubs_filename_root).cc', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 { | 237 { |
232 'destination': '<(PRODUCT_DIR)/', | 238 'destination': '<(PRODUCT_DIR)/', |
233 'files': [ | 239 'files': [ |
234 '<@(source_files)', | 240 '<@(source_files)', |
235 ] | 241 ] |
236 }, | 242 }, |
237 ], | 243 ], |
238 }, | 244 }, |
239 ], | 245 ], |
240 } | 246 } |
OLD | NEW |