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

Side by Side Diff: gyp/common_variables.gypi

Issue 2284753003: Fix angle build on Ubuntu (Closed)
Patch Set: Created 4 years, 3 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 | « 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 2012 The Android Open Source Project 1 # Copyright 2012 The Android Open Source Project
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 # Get ready for the ugly... 7 # Get ready for the ugly...
8 # 8 #
9 # - We have to nest our variables dictionaries multiple levels deep, so that 9 # - We have to nest our variables dictionaries multiple levels deep, so that
10 # this and other gyp files can rely on previously-set variable values in 10 # this and other gyp files can rely on previously-set variable values in
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 198
199 # Re-define all variables defined within the level-2 'variables' dict, 199 # Re-define all variables defined within the level-2 'variables' dict,
200 # so that siblings of the level-1 'variables' dict can see them. 200 # so that siblings of the level-1 'variables' dict can see them.
201 'arm_version%': '<(arm_version)', 201 'arm_version%': '<(arm_version)',
202 'arm_neon%': '<(arm_neon)', 202 'arm_neon%': '<(arm_neon)',
203 'mips_arch_variant%': 'mips32', 203 'mips_arch_variant%': 'mips32',
204 'mips_dsp%': 0, 204 'mips_dsp%': 0,
205 'skia_os%': '<(skia_os)', 205 'skia_os%': '<(skia_os)',
206 'os_posix%': '<(os_posix)', 206 'os_posix%': '<(os_posix)',
207 207
208 'pkg-config%': 'pkg-config',
209
208 'skia_freetype_static%': '<(skia_freetype_static)', 210 'skia_freetype_static%': '<(skia_freetype_static)',
209 'skia_no_fontconfig%': '<(skia_no_fontconfig)', 211 'skia_no_fontconfig%': '<(skia_no_fontconfig)',
210 'skia_embedded_fonts%': '<(skia_embedded_fonts)', 212 'skia_embedded_fonts%': '<(skia_embedded_fonts)',
211 'skia_sanitizer%': '<(skia_sanitizer)', 213 'skia_sanitizer%': '<(skia_sanitizer)',
212 'skia_sanitizer_blacklist%': 214 'skia_sanitizer_blacklist%':
213 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])" ../tools/xsan.blacklist)', 215 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])" ../tools/xsan.blacklist)',
214 'skia_mesa%': '<(skia_mesa)', 216 'skia_mesa%': '<(skia_mesa)',
215 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)', 217 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)',
216 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)', 218 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)',
217 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', 219 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 #'-flto' # Enable link-time optimization. 258 #'-flto' # Enable link-time optimization.
257 ], 259 ],
258 'skia_experimental_shadowing': 0, # for experimental shadow-drawing 260 'skia_experimental_shadowing': 0, # for experimental shadow-drawing
259 261
260 # These are referenced by our .gypi files that list files (e.g. core.gypi) 262 # These are referenced by our .gypi files that list files (e.g. core.gypi)
261 # 263 #
262 'skia_src_path%': '../src', 264 'skia_src_path%': '../src',
263 'skia_include_path%': '../include', 265 'skia_include_path%': '../include',
264 }, 266 },
265 } 267 }
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