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

Side by Side Diff: libyuv.gyp

Issue 2585373002: modified libyuv.gyp so that it no longer depends on libjpeg.gyp, which does not exist anymore. (Closed)
Patch Set: Created 3 years, 12 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
« no previous file with comments | « include/libyuv/version.h ('k') | libyuv_test.gyp » ('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 2011 The LibYuv Project Authors. All rights reserved. 1 # Copyright 2011 The LibYuv Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
11 'libyuv.gypi', 11 'libyuv.gypi',
12 ], 12 ],
13 # Make sure that if we are being compiled to an xcodeproj, nothing tries to 13 # Make sure that if we are being compiled to an xcodeproj, nothing tries to
14 # include a .pch. 14 # include a .pch.
15 'xcode_settings': { 15 'xcode_settings': {
16 'GCC_PREFIX_HEADER': '', 16 'GCC_PREFIX_HEADER': '',
17 'GCC_PRECOMPILE_PREFIX_HEADER': 'NO', 17 'GCC_PRECOMPILE_PREFIX_HEADER': 'NO',
18 }, 18 },
19 'variables': { 19 'variables': {
20 'use_system_libjpeg%': 0, 20 'use_system_libjpeg%': 0,
21 'libyuv_disable_jpeg%': 0, 21 # Can be enabled if your jpeg has GYP support.
22 'libyuv_disable_jpeg%': 1,
22 # 'chromium_code' treats libyuv as internal and increases warning level. 23 # 'chromium_code' treats libyuv as internal and increases warning level.
23 'chromium_code': 1, 24 'chromium_code': 1,
24 # clang compiler default variable usable by other apps that include libyuv. 25 # clang compiler default variable usable by other apps that include libyuv.
25 'clang%': 0, 26 'clang%': 0,
26 # Link-Time Optimizations. 27 # Link-Time Optimizations.
27 'use_lto%': 0, 28 'use_lto%': 0,
28 'mips_msa%': 0, # Default to msa off. 29 'mips_msa%': 0, # Default to msa off.
29 'build_neon': 0, 30 'build_neon': 0,
30 'build_msa': 0, 31 'build_msa': 0,
31 'conditions': [ 32 'conditions': [
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 ], 153 ],
153 }, 154 },
154 ], # targets. 155 ], # targets.
155 } 156 }
156 157
157 # Local Variables: 158 # Local Variables:
158 # tab-width:2 159 # tab-width:2
159 # indent-tabs-mode:nil 160 # indent-tabs-mode:nil
160 # End: 161 # End:
161 # vim: set expandtab tabstop=2 shiftwidth=2: 162 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « include/libyuv/version.h ('k') | libyuv_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698