| 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 20 matching lines...) Expand all Loading... |
| 31 # dicts), so we have to re-define every variable at every enclosure level | 31 # dicts), so we have to re-define every variable at every enclosure level |
| 32 # within our ridiculous matryoshka doll of 'variable' dicts. That's why | 32 # within our ridiculous matryoshka doll of 'variable' dicts. That's why |
| 33 # we have variable definitions like this: 'skia_os%': '<(skia_os)', | 33 # we have variable definitions like this: 'skia_os%': '<(skia_os)', |
| 34 # | 34 # |
| 35 # See http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi?revisi
on=127004 , | 35 # See http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi?revisi
on=127004 , |
| 36 # which deals with these same constraints in a similar manner. | 36 # which deals with these same constraints in a similar manner. |
| 37 # | 37 # |
| 38 'variables': { # level 1 | 38 'variables': { # level 1 |
| 39 'angle_path%': '../', | 39 'angle_path%': '../', |
| 40 | 40 |
| 41 # RAW codec needs exceptions. Due to that, it is a separate target. Its usag
e can be controlled | |
| 42 # by this variable. | |
| 43 'skia_codec_decodes_raw%': 1, | |
| 44 | |
| 45 'variables': { # level 2 | 41 'variables': { # level 2 |
| 46 | 42 |
| 47 # Variables needed by conditions list within the level-2 variables dict. | 43 # Variables needed by conditions list within the level-2 variables dict. |
| 48 'variables': { # level 3 | 44 'variables': { # level 3 |
| 49 'variables': { # level 4 | 45 'variables': { # level 4 |
| 50 # We use 'skia_os' instead of 'OS' throughout our gyp files, to allow | 46 # We use 'skia_os' instead of 'OS' throughout our gyp files, to allow |
| 51 # for cross-compilation (e.g. building for either MacOS or iOS on Mac)
. | 47 # for cross-compilation (e.g. building for either MacOS or iOS on Mac)
. |
| 52 # We set it automatically based on 'OS' (the host OS), but allow the | 48 # We set it automatically based on 'OS' (the host OS), but allow the |
| 53 # user to override it via GYP_DEFINES if they like. | 49 # user to override it via GYP_DEFINES if they like. |
| 54 'skia_os%': '<(OS)', | 50 'skia_os%': '<(OS)', |
| 55 }, | 51 }, |
| 56 'skia_os%': '<(skia_os)', | 52 'skia_os%': '<(skia_os)', |
| 57 | 53 |
| 58 'skia_android_framework%': 0, | 54 'skia_android_framework%': 0, |
| 59 'conditions' : [ | 55 'conditions' : [ |
| 60 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { | 56 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { |
| 61 'skia_arch_type%': 'x86_64', | 57 'skia_arch_type%': 'x86_64', |
| 62 }, { | 58 }, { |
| 63 'skia_arch_type%': 'x86', | 59 'skia_arch_type%': 'x86', |
| 64 }], | 60 }], |
| 61 # RAW codec needs exceptions. Due to that, it is a separate target. It
s usage can be |
| 62 # controlled by skia_codec_decodes_raw. |
| 63 ['skia_os == "chromeos"', { |
| 64 # FIXME: fix the support for ChromeOS [DNG SDK issue with clock_gett
ime()]. |
| 65 'skia_codec_decodes_raw%' : 0, |
| 66 }, { |
| 67 'skia_codec_decodes_raw%' : 1, |
| 68 }], |
| 65 ], | 69 ], |
| 66 'arm_version%': 0, | 70 'arm_version%': 0, |
| 67 'arm_neon%': 0, | 71 'arm_neon%': 0, |
| 68 'skia_egl%': 0, | 72 'skia_egl%': 0, |
| 69 }, | 73 }, |
| 70 | 74 |
| 71 # Re-define all variables defined within the level-3 'variables' dict, | 75 # Re-define all variables defined within the level-3 'variables' dict, |
| 72 # so that siblings of the level-2 'variables' dict can see them. | 76 # so that siblings of the level-2 'variables' dict can see them. |
| 73 # (skia_os will depend on skia_android_framework.) | 77 # (skia_os will depend on skia_android_framework.) |
| 74 'skia_android_framework%': '<(skia_android_framework)', | 78 'skia_android_framework%': '<(skia_android_framework)', |
| 79 'skia_codec_decodes_raw%': '<(skia_codec_decodes_raw)', |
| 75 'skia_arch_type%': '<(skia_arch_type)', | 80 'skia_arch_type%': '<(skia_arch_type)', |
| 76 'arm_version%': '<(arm_version)', | 81 'arm_version%': '<(arm_version)', |
| 77 'arm_neon%': '<(arm_neon)', | 82 'arm_neon%': '<(arm_neon)', |
| 78 'skia_egl%': '<(skia_egl)', | 83 'skia_egl%': '<(skia_egl)', |
| 79 | 84 |
| 80 'conditions': [ | 85 'conditions': [ |
| 81 [ 'skia_android_framework == 1', { | 86 [ 'skia_android_framework == 1', { |
| 82 'skia_os%': 'android', | 87 'skia_os%': 'android', |
| 83 'skia_chrome_utils%': 0, | 88 'skia_chrome_utils%': 0, |
| 84 'skia_use_android_framework_defines%': 1, | 89 'skia_use_android_framework_defines%': 1, |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'skia_no_fontconfig%': '<(skia_no_fontconfig)', | 212 'skia_no_fontconfig%': '<(skia_no_fontconfig)', |
| 208 'skia_embedded_fonts%': '<(skia_embedded_fonts)', | 213 'skia_embedded_fonts%': '<(skia_embedded_fonts)', |
| 209 'skia_sanitizer%': '<(skia_sanitizer)', | 214 'skia_sanitizer%': '<(skia_sanitizer)', |
| 210 'skia_sanitizer_blacklist%': | 215 'skia_sanitizer_blacklist%': |
| 211 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])"
../tools/xsan.blacklist)', | 216 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])"
../tools/xsan.blacklist)', |
| 212 'skia_mesa%': '<(skia_mesa)', | 217 'skia_mesa%': '<(skia_mesa)', |
| 213 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)', | 218 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)', |
| 214 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)', | 219 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)', |
| 215 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', | 220 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', |
| 216 'skia_android_framework%': '<(skia_android_framework)', | 221 'skia_android_framework%': '<(skia_android_framework)', |
| 222 'skia_codec_decodes_raw%': '<(skia_codec_decodes_raw)', |
| 217 'skia_use_android_framework_defines%': '<(skia_use_android_framework_defines
)', | 223 'skia_use_android_framework_defines%': '<(skia_use_android_framework_defines
)', |
| 218 'skia_use_system_json%': '<(skia_use_system_json)', | 224 'skia_use_system_json%': '<(skia_use_system_json)', |
| 219 'skia_android_path_rendering%': '<(skia_android_path_rendering)', | 225 'skia_android_path_rendering%': '<(skia_android_path_rendering)', |
| 220 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)', | 226 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)', |
| 221 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)', | 227 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)', |
| 222 'skia_angle%': '<(skia_angle)', | 228 'skia_angle%': '<(skia_angle)', |
| 223 'skia_arch_type%': '<(skia_arch_type)', | 229 'skia_arch_type%': '<(skia_arch_type)', |
| 224 'skia_chrome_utils%': '<(skia_chrome_utils)', | 230 'skia_chrome_utils%': '<(skia_chrome_utils)', |
| 225 'skia_command_buffer%': '<(skia_command_buffer)', | 231 'skia_command_buffer%': '<(skia_command_buffer)', |
| 226 'skia_gdi%': '<(skia_gdi)', | 232 'skia_gdi%': '<(skia_gdi)', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 252 '-ffast-math', # Optimize float math even when it breaks IEEE
compliance. | 258 '-ffast-math', # Optimize float math even when it breaks IEEE
compliance. |
| 253 #'-flto' # Enable link-time optimization. | 259 #'-flto' # Enable link-time optimization. |
| 254 ], | 260 ], |
| 255 | 261 |
| 256 # 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) |
| 257 # | 263 # |
| 258 'skia_src_path%': '../src', | 264 'skia_src_path%': '../src', |
| 259 'skia_include_path%': '../include', | 265 'skia_include_path%': '../include', |
| 260 }, | 266 }, |
| 261 } | 267 } |
| OLD | NEW |