| 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 |
| 9 # crbug.com/408997 |
| 10 'use_lto%': 0, |
| 8 'conditions': [ | 11 'conditions': [ |
| 9 ['os_posix==1', { | 12 ['os_posix==1', { |
| 10 'asm_obj_extension': 'o', | 13 'asm_obj_extension': 'o', |
| 11 }], | 14 }], |
| 12 ['OS=="win"', { | 15 ['OS=="win"', { |
| 13 'asm_obj_extension': 'obj', | 16 'asm_obj_extension': 'obj', |
| 14 }], | 17 }], |
| 15 | 18 |
| 16 ['msan==1', { | 19 ['msan==1', { |
| 17 'target_arch_full': 'generic', | 20 'target_arch_full': 'generic', |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 # Need this otherwise gyp won't run the rule on them. | 574 # Need this otherwise gyp won't run the rule on them. |
| 572 'sources': [ | 575 'sources': [ |
| 573 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', | 576 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', |
| 574 ], | 577 ], |
| 575 }], | 578 }], |
| 576 ], | 579 ], |
| 577 'includes': ['obj_int_extract.gypi'], | 580 'includes': ['obj_int_extract.gypi'], |
| 578 }, | 581 }, |
| 579 ], | 582 ], |
| 580 } | 583 } |
| OLD | NEW |