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 'use_system_libvpx%': 0, | 6 'use_system_libvpx%': 0, |
7 'libvpx_build_vp9%': 1, | 7 'libvpx_build_vp9%': 1, |
8 'libvpx_source%': 'source/libvpx', | 8 'libvpx_source%': 'source/libvpx', |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 '<(libvpx_source)', | 345 '<(libvpx_source)', |
346 ], | 346 ], |
347 'conditions': [ | 347 'conditions': [ |
348 ['asan==1', { | 348 ['asan==1', { |
349 'cflags!': [ '-fsanitize=address' ], | 349 'cflags!': [ '-fsanitize=address' ], |
350 'xcode_settings': { 'OTHER_CFLAGS!': [ '-fsanitize=address' ] }, | 350 'xcode_settings': { 'OTHER_CFLAGS!': [ '-fsanitize=address' ] }, |
351 'ldflags!': [ '-fsanitize=address' ], | 351 'ldflags!': [ '-fsanitize=address' ], |
352 }], | 352 }], |
353 ], | 353 ], |
354 'sources': [ | 354 'sources': [ |
355 '<(libvpx_source)/vp8/encoder/asm_enc_offsets.c', | 355 '<(libvpx_source)/vp8/encoder/vp8_asm_enc_offsets.c', |
356 ], | 356 ], |
357 }, | 357 }, |
358 { | 358 { |
359 # A library that contains assembly offsets needed. | 359 # A library that contains assembly offsets needed. |
360 # TODO(fgalligan): Merge libvpx_asm_offsets_vp9 into | 360 # TODO(fgalligan): Merge libvpx_asm_offsets_vp9 into |
361 # libvpx_asm_offsets. | 361 # libvpx_asm_offsets. |
362 'target_name': 'libvpx_asm_offsets_vp9', | 362 'target_name': 'libvpx_asm_offsets_vp9', |
363 'type': 'static_library', | 363 'type': 'static_library', |
364 'hard_dependency': 1, | 364 'hard_dependency': 1, |
365 'include_dirs': [ | 365 'include_dirs': [ |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 ], | 808 ], |
809 'libraries': [ | 809 'libraries': [ |
810 '<!@(pkg-config --libs-only-l vpx)', | 810 '<!@(pkg-config --libs-only-l vpx)', |
811 ], | 811 ], |
812 }, | 812 }, |
813 }, | 813 }, |
814 ], | 814 ], |
815 }], | 815 }], |
816 ], | 816 ], |
817 } | 817 } |
OLD | NEW |