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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 [ 'skia_os == "win"', { | 55 [ 'skia_os == "win"', { |
56 'os_posix%': 0, | 56 'os_posix%': 0, |
57 }, { | 57 }, { |
58 'os_posix%': 1, | 58 'os_posix%': 1, |
59 }], | 59 }], |
60 [ 'skia_os in ["linux", "win"]', { | 60 [ 'skia_os in ["linux", "win"]', { |
61 'skia_poppler_enabled%': 1, | 61 'skia_poppler_enabled%': 1, |
62 }, { | 62 }, { |
63 'skia_poppler_enabled%': 0, | 63 'skia_poppler_enabled%': 0, |
64 }], | 64 }], |
65 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 65 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { |
66 'skia_arch_width%': 64, | 66 'skia_arch_width%': 64, |
67 }, { | 67 }, { |
68 'skia_arch_width%': 32, | 68 'skia_arch_width%': 32, |
69 }], | 69 }], |
70 [ 'skia_os == "android"', { | 70 [ 'skia_os == "android"', { |
71 'skia_static_initializers%': 0, | 71 'skia_static_initializers%': 0, |
72 }, { | 72 }, { |
73 'skia_static_initializers%': 1, | 73 'skia_static_initializers%': 1, |
74 }], | 74 }], |
75 [ 'skia_os == "ios"', { | 75 [ 'skia_os == "ios"', { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'ios_sdk_version%': '6.0', | 167 'ios_sdk_version%': '6.0', |
168 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 168 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
169 'skia_run_pdfviewer_in_gm%': 0, | 169 'skia_run_pdfviewer_in_gm%': 0, |
170 | 170 |
171 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 171 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
172 # | 172 # |
173 'skia_src_path%': '../src', | 173 'skia_src_path%': '../src', |
174 'skia_include_path%': '../include', | 174 'skia_include_path%': '../include', |
175 }, | 175 }, |
176 } | 176 } |
OLD | NEW |