| 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 'conditions': [ | 8 'conditions': [ |
| 9 ['os_posix==1', { | 9 ['os_posix==1', { |
| 10 'asm_obj_extension': 'o', | 10 'asm_obj_extension': 'o', |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 'libvpx_obj_int_extract#host', | 452 'libvpx_obj_int_extract#host', |
| 453 ], | 453 ], |
| 454 'variables' : { | 454 'variables' : { |
| 455 'lib_intermediate_name' : '', | 455 'lib_intermediate_name' : '', |
| 456 'output_format':'', | 456 'output_format':'', |
| 457 'output_dir': '<(shared_generated_dir)', | 457 'output_dir': '<(shared_generated_dir)', |
| 458 'conditions' : [ | 458 'conditions' : [ |
| 459 ['android_webview_build==1', { | 459 ['android_webview_build==1', { |
| 460 # pass the empty string for 3rd and 4th arguments of | 460 # pass the empty string for 3rd and 4th arguments of |
| 461 # intermediates-dir-for macro. | 461 # intermediates-dir-for macro. |
| 462 'lib_intermediate_name' : '<(android_src)/$(call intermediates-dir-f
or, STATIC_LIBRARIES, libvpx_asm_offsets_vp8,,, $(GYP_VAR_PREFIX))/libvpx_asm_of
fsets_vp8.a', | 462 'lib_intermediate_name' : '$(realpath $(call intermediates-dir-for,
STATIC_LIBRARIES, libvpx_asm_offsets_vp8,,, $(GYP_VAR_PREFIX)))/libvpx_asm_offse
ts_vp8.a', |
| 463 }], | 463 }], |
| 464 ['(target_arch=="arm" or target_arch=="armv7")', { | 464 ['(target_arch=="arm" or target_arch=="armv7")', { |
| 465 'output_format': 'gas', | 465 'output_format': 'gas', |
| 466 }, { | 466 }, { |
| 467 'output_format': 'rvds', | 467 'output_format': 'rvds', |
| 468 }], | 468 }], |
| 469 ], | 469 ], |
| 470 }, | 470 }, |
| 471 'conditions': [ | 471 'conditions': [ |
| 472 ['OS=="win"', { | 472 ['OS=="win"', { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 # Need this otherwise gyp won't run the rule on them. | 580 # Need this otherwise gyp won't run the rule on them. |
| 581 'sources': [ | 581 'sources': [ |
| 582 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', | 582 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', |
| 583 ], | 583 ], |
| 584 }], | 584 }], |
| 585 ], | 585 ], |
| 586 'includes': ['obj_int_extract.gypi'], | 586 'includes': ['obj_int_extract.gypi'], |
| 587 }, | 587 }, |
| 588 ], | 588 ], |
| 589 } | 589 } |
| OLD | NEW |