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 'variables': { | 5 'variables': { |
6 'libvpx_build_vp9%': 1, | 6 'libvpx_build_vp9%': 1, |
7 'libvpx_source%': 'source/libvpx', | 7 'libvpx_source%': 'source/libvpx', |
8 # Disable LTO for neon targets | 8 # Disable LTO for neon targets |
9 # crbug.com/408997 | 9 # crbug.com/408997 |
10 'use_lto%': 0, | 10 'use_lto%': 0, |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 # Breaks at least boolhuff_armv5te:token_high_bit_not_set_ev. | 337 # Breaks at least boolhuff_armv5te:token_high_bit_not_set_ev. |
338 '-fstack-protector-all', # Implies -fstack-protector | 338 '-fstack-protector-all', # Implies -fstack-protector |
339 ], | 339 ], |
340 }, | 340 }, |
341 }], | 341 }], |
342 ], | 342 ], |
343 }, | 343 }, |
344 ], | 344 ], |
345 }], | 345 }], |
346 ], | 346 ], |
347 'targets': [ | |
348 { | |
349 # A tool that runs on host to extract integers from object file. | |
350 # All uses of this tool have been removed from libvpx. Keeping it around | |
351 # until webrtc audio processing remove it's dependency. | |
352 'target_name': 'libvpx_obj_int_extract', | |
353 'type': 'executable', | |
354 'toolsets': ['host'], | |
355 'include_dirs': [ | |
356 'source/config/<(OS_CATEGORY)/<(target_arch_full)', | |
357 'source/config', | |
358 '<(libvpx_source)', | |
359 ], | |
360 'sources': [ | |
361 '<(libvpx_source)/build/make/obj_int_extract.c', | |
362 ], | |
363 'conditions': [ | |
364 ['android_webview_build==1', { | |
365 'defines': [ 'FORCE_PARSE_ELF' ], | |
366 'include_dirs': [ 'include' ], | |
367 }], | |
368 ], | |
369 }, | |
370 ], | |
371 } | 347 } |
OLD | NEW |