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

Side by Side Diff: libvpx.gyp

Issue 10823426: Temporarily allow warnings in libvpx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years, 4 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"', {
(...skipping 22 matching lines...) Expand all
33 33
34 ['os_posix == 1 and OS != "mac"', { 34 ['os_posix == 1 and OS != "mac"', {
35 'OS_CATEGORY%': 'linux', 35 'OS_CATEGORY%': 'linux',
36 }, { 36 }, {
37 'OS_CATEGORY%': '<(OS)', 37 'OS_CATEGORY%': '<(OS)',
38 }], 38 }],
39 ], 39 ],
40 40
41 # Location of the intermediate output. 41 # Location of the intermediate output.
42 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libvpx', 42 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libvpx',
43
44 # Override temporarily until we get a warning-free libvpx on Windows.
45 # See http://crbug.com/140121
46 'win_third_party_warn_as_error': 'false',
43 }, 47 },
44 48
45 'conditions': [ 49 'conditions': [
46 [ 'target_arch != "arm"', { 50 [ 'target_arch != "arm"', {
47 'targets': [ 51 'targets': [
48 { 52 {
49 # This libvpx target contains both encoder and decoder. 53 # This libvpx target contains both encoder and decoder.
50 # Encoder is configured to be realtime only. 54 # Encoder is configured to be realtime only.
51 'target_name': 'libvpx', 55 'target_name': 'libvpx',
52 'type': 'static_library', 56 'type': 'static_library',
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 ] 468 ]
465 }, 469 },
466 ], 470 ],
467 } 471 }
468 472
469 # Local Variables: 473 # Local Variables:
470 # tab-width:2 474 # tab-width:2
471 # indent-tabs-mode:nil 475 # indent-tabs-mode:nil
472 # End: 476 # End:
473 # vim: set expandtab tabstop=2 shiftwidth=2: 477 # 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