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

Side by Side Diff: libvpx.gyp

Issue 10232002: To enable x86 android build for libvpx.gyp (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years, 7 months 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 | « no previous file | no next file » | 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 'conditions': [ 6 'conditions': [
7 ['os_posix==1', { 7 ['os_posix==1', {
8 'asm_obj_extension': 'o', 8 'asm_obj_extension': 'o',
9 }], 9 }],
10 ['OS=="win"', { 10 ['OS=="win"', {
11 'asm_obj_extension': 'obj', 11 'asm_obj_extension': 'obj',
12 }], 12 }],
13 ], 13 ],
14 }, 14 },
15 'conditions': [ 15 'conditions': [
16 [ 'OS != "android" and target_arch != "arm"', { 16 [ 'target_arch != "arm"', {
17 'targets': [ 17 'targets': [
18 { 18 {
19 # This libvpx target contains both encoder and decoder. 19 # This libvpx target contains both encoder and decoder.
20 # Encoder is configured to be realtime only. 20 # Encoder is configured to be realtime only.
21 'target_name': 'libvpx', 21 'target_name': 'libvpx',
22 'type': 'static_library', 22 'type': 'static_library',
23 'variables': { 23 'variables': {
24 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/third_party/libvpx', 24 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/third_party/libvpx',
25 'variables': { 25 'variables': {
26 'conditions': [ 26 'conditions': [
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 ], 286 ],
287 }, 287 },
288 ], 288 ],
289 } 289 }
290 290
291 # Local Variables: 291 # Local Variables:
292 # tab-width:2 292 # tab-width:2
293 # indent-tabs-mode:nil 293 # indent-tabs-mode:nil
294 # End: 294 # End:
295 # vim: set expandtab tabstop=2 shiftwidth=2: 295 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698