| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 }, { | 66 }, { |
| 67 'skia_os%': '<(skia_os)', | 67 'skia_os%': '<(skia_os)', |
| 68 'skia_chrome_utils%': 1, | 68 'skia_chrome_utils%': 1, |
| 69 'skia_build_json_writer%': 1, | 69 'skia_build_json_writer%': 1, |
| 70 }], | 70 }], |
| 71 [ 'skia_os == "win"', { | 71 [ 'skia_os == "win"', { |
| 72 'os_posix%': 0, | 72 'os_posix%': 0, |
| 73 }, { | 73 }, { |
| 74 'os_posix%': 1, | 74 'os_posix%': 1, |
| 75 }], | 75 }], |
| 76 [ 'skia_os in ["linux", "win"]', { | 76 [ 'skia_os in ["linux"]', { |
| 77 'skia_poppler_enabled%': 1, | 77 'skia_poppler_enabled%': 1, |
| 78 }, { | 78 }, { |
| 79 'skia_poppler_enabled%': 0, | 79 'skia_poppler_enabled%': 0, |
| 80 }], | 80 }], |
| 81 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"] or skia_
arch_type == "arm64"', { | 81 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"] or skia_
arch_type == "arm64"', { |
| 82 'skia_arch_width%': 64, | 82 'skia_arch_width%': 64, |
| 83 }, { | 83 }, { |
| 84 'skia_arch_width%': 32, | 84 'skia_arch_width%': 32, |
| 85 }], | 85 }], |
| 86 [ 'skia_os == "android"', { | 86 [ 'skia_os == "android"', { |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'skia_run_pdfviewer_in_gm%': 0, | 225 'skia_run_pdfviewer_in_gm%': 0, |
| 226 'skia_disable_inlining%': 0, | 226 'skia_disable_inlining%': 0, |
| 227 'skia_moz2d%': 0, | 227 'skia_moz2d%': 0, |
| 228 | 228 |
| 229 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 229 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
| 230 # | 230 # |
| 231 'skia_src_path%': '../src', | 231 'skia_src_path%': '../src', |
| 232 'skia_include_path%': '../include', | 232 'skia_include_path%': '../include', |
| 233 }, | 233 }, |
| 234 } | 234 } |
| OLD | NEW |