OLD | NEW |
---|---|
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 |
epoger
2014/01/08 19:40:22
Toplevel questions:
1. You say "Populating the ca
vandebo (ex-Chrome)
2014/01/08 21:24:15
The fontconfig works when it's installed on a syst
| |
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 |
11 # their 'variables': { 'conditions': [] } clauses. | 11 # their 'variables': { 'conditions': [] } clauses. |
12 # | 12 # |
13 # Example 1: | 13 # Example 1: |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 'skia_angle%': 0, | 89 'skia_angle%': 0, |
90 'skia_chrome_utils%': 1, | 90 'skia_chrome_utils%': 1, |
91 'skia_directwrite%': 0, | 91 'skia_directwrite%': 0, |
92 'skia_gpu%': 1, | 92 'skia_gpu%': 1, |
93 'skia_osx_sdkroot%': '', | 93 'skia_osx_sdkroot%': '', |
94 'skia_profile_enabled%': 0, | 94 'skia_profile_enabled%': 0, |
95 'skia_win_debuggers_path%': '', | 95 'skia_win_debuggers_path%': '', |
96 'skia_shared_lib%': 0, | 96 'skia_shared_lib%': 0, |
97 'skia_opencl%': 0, | 97 'skia_opencl%': 0, |
98 'skia_distancefield_fonts%': 0, | 98 'skia_distancefield_fonts%': 0, |
99 'skia_mac_poppler%': 1, | |
bungeman-skia
2014/01/07 21:13:29
It looks like the actual meaning of this variable
vandebo (ex-Chrome)
2014/01/08 21:24:15
We don't want to have poppler without fontconfig i
| |
99 | 100 |
100 # These variables determine the default optimization level for different | 101 # These variables determine the default optimization level for different |
101 # compilers. | 102 # compilers. |
102 'skia_default_vs_optimization_level': 3, # full (/Ox) | 103 'skia_default_vs_optimization_level': 3, # full (/Ox) |
103 'skia_default_gcc_optimization_level': 3, # -O3 | 104 'skia_default_gcc_optimization_level': 3, # -O3 |
104 }, | 105 }, |
105 | 106 |
106 'conditions': [ | 107 'conditions': [ |
107 [ 'skia_os == "win" and skia_arch_width == 32 or ' | 108 [ 'skia_os == "win" and skia_arch_width == 32 or ' |
108 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or ' | 109 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or ' |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
150 'skia_arch_type%': '<(skia_arch_type)', | 151 'skia_arch_type%': '<(skia_arch_type)', |
151 'skia_chrome_utils%': '<(skia_chrome_utils)', | 152 'skia_chrome_utils%': '<(skia_chrome_utils)', |
152 'skia_directwrite%': '<(skia_directwrite)', | 153 'skia_directwrite%': '<(skia_directwrite)', |
153 'skia_gpu%': '<(skia_gpu)', | 154 'skia_gpu%': '<(skia_gpu)', |
154 'skia_win_exceptions%': 0, | 155 'skia_win_exceptions%': 0, |
155 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', | 156 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', |
156 'skia_profile_enabled%': '<(skia_profile_enabled)', | 157 'skia_profile_enabled%': '<(skia_profile_enabled)', |
157 'skia_shared_lib%': '<(skia_shared_lib)', | 158 'skia_shared_lib%': '<(skia_shared_lib)', |
158 'skia_opencl%': '<(skia_opencl)', | 159 'skia_opencl%': '<(skia_opencl)', |
159 'skia_distancefield_fonts%': '<(skia_distancefield_fonts)', | 160 'skia_distancefield_fonts%': '<(skia_distancefield_fonts)', |
161 'skia_mac_poppler%': '<(skia_mac_poppler)', | |
160 'skia_static_initializers%': '<(skia_static_initializers)', | 162 'skia_static_initializers%': '<(skia_static_initializers)', |
161 'ios_sdk_version%': '6.0', | 163 'ios_sdk_version%': '6.0', |
162 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 164 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
163 'skia_run_pdfviewer_in_gm%': 0, | 165 'skia_run_pdfviewer_in_gm%': 0, |
164 | 166 |
165 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 167 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
166 # | 168 # |
167 'skia_src_path%': '../src', | 169 'skia_src_path%': '../src', |
168 'skia_include_path%': '../include', | 170 'skia_include_path%': '../include', |
169 }, | 171 }, |
170 } | 172 } |
OLD | NEW |