Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: libvpx.gyp

Issue 757313004: Remove all remaining obj_int_extract code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « generate_gypi.sh ('k') | obj_int_extract.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « generate_gypi.sh ('k') | obj_int_extract.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698