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 |
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'skia_nv_path_rendering%': 0, | 83 'skia_nv_path_rendering%': 0, |
84 'skia_stroke_path_rendering%': 0, | 84 'skia_stroke_path_rendering%': 0, |
85 'skia_android_path_rendering%': 0, | 85 'skia_android_path_rendering%': 0, |
86 'skia_texture_cache_mb_limit%': 0, | 86 'skia_texture_cache_mb_limit%': 0, |
87 'skia_angle%': 0, | 87 'skia_angle%': 0, |
88 'skia_directwrite%': 0, | 88 'skia_directwrite%': 0, |
89 'skia_gpu%': 1, | 89 'skia_gpu%': 1, |
90 'skia_osx_sdkroot%': '', | 90 'skia_osx_sdkroot%': '', |
91 'skia_profile_enabled%': 0, | 91 'skia_profile_enabled%': 0, |
92 'skia_win_debuggers_path%': '', | 92 'skia_win_debuggers_path%': '', |
| 93 'skia_shared_lib%': 0, |
93 }, | 94 }, |
94 | 95 |
95 'conditions': [ | 96 'conditions': [ |
96 [ 'skia_os == "win" and skia_arch_width == 32 or ' | 97 [ 'skia_os == "win" and skia_arch_width == 32 or ' |
97 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or ' | 98 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or ' |
98 'skia_os == "mac" and skia_arch_width == 32', { | 99 'skia_os == "mac" and skia_arch_width == 32', { |
99 'skia_warnings_as_errors%': 1, | 100 'skia_warnings_as_errors%': 1, |
100 }, { | 101 }, { |
101 'skia_warnings_as_errors%': 0, | 102 'skia_warnings_as_errors%': 0, |
102 }], | 103 }], |
(...skipping 11 matching lines...) Expand all Loading... |
114 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', | 115 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', |
115 'skia_android_path_rendering%': '<(skia_android_path_rendering)', | 116 'skia_android_path_rendering%': '<(skia_android_path_rendering)', |
116 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)', | 117 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)', |
117 'skia_angle%': '<(skia_angle)', | 118 'skia_angle%': '<(skia_angle)', |
118 'skia_arch_width%': '<(skia_arch_width)', | 119 'skia_arch_width%': '<(skia_arch_width)', |
119 'skia_arch_type%': '<(skia_arch_type)', | 120 'skia_arch_type%': '<(skia_arch_type)', |
120 'skia_directwrite%': '<(skia_directwrite)', | 121 'skia_directwrite%': '<(skia_directwrite)', |
121 'skia_gpu%': '<(skia_gpu)', | 122 'skia_gpu%': '<(skia_gpu)', |
122 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', | 123 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', |
123 'skia_profile_enabled%': '<(skia_profile_enabled)', | 124 'skia_profile_enabled%': '<(skia_profile_enabled)', |
| 125 'skia_shared_lib%': '<(skia_shared_lib)', |
124 'skia_static_initializers%': '<(skia_static_initializers)', | 126 'skia_static_initializers%': '<(skia_static_initializers)', |
125 'ios_sdk_version%': '6.0', | 127 'ios_sdk_version%': '6.0', |
126 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 128 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
127 | 129 |
128 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 130 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
129 # | 131 # |
130 'skia_src_path%': '../src', | 132 'skia_src_path%': '../src', |
131 'skia_include_path%': '../include', | 133 'skia_include_path%': '../include', |
132 }, | 134 }, |
133 } | 135 } |
134 # Local Variables: | 136 # Local Variables: |
135 # tab-width:2 | 137 # tab-width:2 |
136 # indent-tabs-mode:nil | 138 # indent-tabs-mode:nil |
137 # End: | 139 # End: |
138 # vim: set expandtab tabstop=2 shiftwidth=2: | 140 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |