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

Side by Side Diff: build/common.gypi

Issue 6572001: Use libjpeg-turbo as the default JPEG library (Take 2)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 | « DEPS ('k') | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 # Set Neon compilation flags (only meaningful if armv7==1). 100 # Set Neon compilation flags (only meaningful if armv7==1).
101 'arm_neon%': 1, 101 'arm_neon%': 1,
102 102
103 # The system root for cross-compiles. Default: none. 103 # The system root for cross-compiles. Default: none.
104 'sysroot%': '', 104 'sysroot%': '',
105 105
106 # On Linux, we build with sse2 for Chromium builds. 106 # On Linux, we build with sse2 for Chromium builds.
107 'disable_sse2%': 0, 107 'disable_sse2%': 0,
108 108
109 # Use libjpeg-turbo as the JPEG codec used by Chromium. 109 # Use libjpeg-turbo as the JPEG codec used by Chromium.
110 'use_libjpeg_turbo%': 0, 110 'use_libjpeg_turbo%': 1,
111 111
112 # Variable 'component' is for cases where we would like to build some 112 # Variable 'component' is for cases where we would like to build some
113 # components as dynamic shared libraries but still need variable 113 # components as dynamic shared libraries but still need variable
114 # 'library' for static libraries. 114 # 'library' for static libraries.
115 # By default, component is set to whatever library is set to and 115 # By default, component is set to whatever library is set to and
116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. 116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi.
117 'component%': '<(library)', 117 'component%': '<(library)',
118 118
119 # Set to select the Title Case versions of strings in GRD files. 119 # Set to select the Title Case versions of strings in GRD files.
120 'use_titlecase_in_grd_files%': 0, 120 'use_titlecase_in_grd_files%': 0,
(...skipping 1481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 # and therefore SYMROOT, needs to be set at the project level. 1602 # and therefore SYMROOT, needs to be set at the project level.
1603 'SYMROOT': '<(DEPTH)/xcodebuild', 1603 'SYMROOT': '<(DEPTH)/xcodebuild',
1604 }, 1604 },
1605 } 1605 }
1606 1606
1607 # Local Variables: 1607 # Local Variables:
1608 # tab-width:2 1608 # tab-width:2
1609 # indent-tabs-mode:nil 1609 # indent-tabs-mode:nil
1610 # End: 1610 # End:
1611 # vim: set expandtab tabstop=2 shiftwidth=2: 1611 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698