epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 1 | # Copyright 2012 The Android Open Source Project |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | { |
| 7 | # Get ready for the ugly... |
| 8 | # |
| 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 |
| 11 | # their 'variables': { 'conditions': [] } clauses. |
| 12 | # |
| 13 | # Example 1: |
| 14 | # Within this file, we use the value of variable 'skia_os' to set the |
| 15 | # value of variable 'os_posix', so 'skia_os' must be defined within a |
| 16 | # "more inner" (enclosed) scope than 'os_posix'. |
| 17 | # |
| 18 | # Example 2: |
| 19 | # http://src.chromium.org/viewvc/chrome/trunk/src/third_party/libjpeg/libjpeg.gyp?revision=102306 , |
| 20 | # which we currently import into our build, uses the value of 'os_posix' |
| 21 | # within the 'conditions' list in its 'variables' dict. |
| 22 | # In order for that to work, it needs the value of 'os_posix' to have been |
| 23 | # set within a "more inner" (enclosed) scope than its own 'variables' dict. |
| 24 | # |
| 25 | # - On the other hand, key/value pairs of a given 'variable' dict are only |
| 26 | # inherited by: |
| 27 | # 1. directly enclosing 'variable' dicts, and |
| 28 | # 2. "sibling" 'variable' dicts (which, I guess, are combined into a single |
| 29 | # 'variable' dict during gyp processing) |
| 30 | # and NOT inherited by "uncles" (siblings of directly enclosing 'variable' |
| 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 |
| 33 | # we have variable definitions like this: 'skia_os%': '<(skia_os)', |
| 34 | # |
| 35 | # See http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi?revision=127004 , |
| 36 | # which deals with these same constraints in a similar manner. |
| 37 | # |
| 38 | 'variables': { # level 1 |
| 39 | 'variables': { # level 2 |
| 40 | |
| 41 | # Variables needed by conditions list within the level-2 variables dict. |
| 42 | 'variables': { # level 3 |
| 43 | # We use 'skia_os' instead of 'OS' throughout our gyp files, to allow |
| 44 | # for cross-compilation (e.g. building for either MacOS or iOS on Mac). |
| 45 | # We set it automatically based on 'OS' (the host OS), but allow the |
| 46 | # user to override it via GYP_DEFINES if they like. |
| 47 | 'skia_os%': '<(OS)', |
| 48 | }, |
| 49 | |
| 50 | # Re-define all variables defined within the level-3 'variables' dict, |
| 51 | # so that siblings of the level-2 'variables' dict can see them. |
| 52 | 'skia_os%': '<(skia_os)', |
caryclark@google.com | 976298e | 2012-09-24 19:41:43 +0000 | [diff] [blame] | 53 | |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 54 | 'conditions': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 55 | [ 'skia_os == "win"', { |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 56 | 'os_posix%': 0, |
| 57 | }, { |
| 58 | 'os_posix%': 1, |
| 59 | }], |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 60 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
borenet@google.com | a37a517 | 2012-08-09 20:44:32 +0000 | [diff] [blame] | 61 | 'skia_arch_width%': 64, |
| 62 | }, { |
| 63 | 'skia_arch_width%': 32, |
| 64 | }], |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 65 | [ 'skia_os == "android"', { |
borenet@google.com | c2dd3d4 | 2012-09-11 21:37:28 +0000 | [diff] [blame] | 66 | 'skia_static_initializers%': 0, |
| 67 | }, { |
| 68 | 'skia_static_initializers%': 1, |
| 69 | }], |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 70 | [ 'skia_os == "ios"', { |
| 71 | 'skia_arch_type%': 'arm', |
| 72 | 'armv7%': 1, |
| 73 | 'arm_neon%': 0, # neon asm files known not to work with the ios build |
| 74 | },{ # skia_os is not ios |
| 75 | 'skia_arch_type%': 'x86', |
| 76 | 'armv7%': 0, |
| 77 | 'arm_neon%': 0, |
| 78 | }], |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 79 | ], |
| 80 | |
| 81 | 'skia_scalar%': 'float', |
| 82 | 'skia_mesa%': 0, |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 83 | 'skia_nv_path_rendering%': 0, |
sugoi@google.com | e3453cb | 2013-01-07 14:26:40 +0000 | [diff] [blame] | 84 | 'skia_stroke_path_rendering%': 0, |
jvanverth@google.com | 74dda90 | 2013-01-09 21:04:52 +0000 | [diff] [blame] | 85 | 'skia_android_path_rendering%': 0, |
djsollen@google.com | 42041e6 | 2012-10-29 19:24:45 +0000 | [diff] [blame] | 86 | 'skia_texture_cache_mb_limit%': 0, |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 87 | 'skia_angle%': 0, |
bungeman@google.com | e8f0592 | 2012-08-16 16:13:40 +0000 | [diff] [blame] | 88 | 'skia_directwrite%': 0, |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 89 | 'skia_gpu%': 1, |
humper@google.com | 522dbd2 | 2013-02-08 21:45:33 +0000 | [diff] [blame] | 90 | 'skia_osx_sdkroot%': '', |
djsollen@google.com | 5afbbc4 | 2012-11-29 15:09:58 +0000 | [diff] [blame] | 91 | 'skia_profile_enabled%': 0, |
rmistry@google.com | 7cdea64 | 2012-12-05 14:56:08 +0000 | [diff] [blame] | 92 | # Note: This is currently only turned on for linux and android. |
| 93 | # TODO: Turn on for Win and Mac as well. |
| 94 | 'skia_warnings_as_errors%': 0, |
borenet@google.com | 663a979 | 2013-03-08 22:22:44 +0000 | [diff] [blame^] | 95 | 'skia_win_debuggers_path%': '', |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 96 | }, |
| 97 | |
| 98 | # Re-define all variables defined within the level-2 'variables' dict, |
| 99 | # so that siblings of the level-1 'variables' dict can see them. |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 100 | 'armv7%': '<(armv7)', |
| 101 | 'arm_neon%': '<(arm_neon)', |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 102 | 'skia_os%': '<(skia_os)', |
| 103 | 'os_posix%': '<(os_posix)', |
| 104 | 'skia_scalar%': '<(skia_scalar)', |
| 105 | 'skia_mesa%': '<(skia_mesa)', |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 106 | 'skia_nv_path_rendering%': '<(skia_nv_path_rendering)', |
sugoi@google.com | e3453cb | 2013-01-07 14:26:40 +0000 | [diff] [blame] | 107 | 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', |
jvanverth@google.com | 74dda90 | 2013-01-09 21:04:52 +0000 | [diff] [blame] | 108 | 'skia_android_path_rendering%': '<(skia_android_path_rendering)', |
djsollen@google.com | 42041e6 | 2012-10-29 19:24:45 +0000 | [diff] [blame] | 109 | 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)', |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 110 | 'skia_angle%': '<(skia_angle)', |
djsollen@google.com | e341cb3 | 2012-06-28 16:08:05 +0000 | [diff] [blame] | 111 | 'skia_arch_width%': '<(skia_arch_width)', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 112 | 'skia_arch_type%': '<(skia_arch_type)', |
bungeman@google.com | e8f0592 | 2012-08-16 16:13:40 +0000 | [diff] [blame] | 113 | 'skia_directwrite%': '<(skia_directwrite)', |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 114 | 'skia_gpu%': '<(skia_gpu)', |
senorblanco@chromium.org | bc5cbfe | 2012-09-20 16:10:02 +0000 | [diff] [blame] | 115 | 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', |
djsollen@google.com | 5afbbc4 | 2012-11-29 15:09:58 +0000 | [diff] [blame] | 116 | 'skia_profile_enabled%': '<(skia_profile_enabled)', |
rmistry@google.com | 7cdea64 | 2012-12-05 14:56:08 +0000 | [diff] [blame] | 117 | 'skia_warnings_as_errors%': '<(skia_warnings_as_errors)', |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 118 | 'skia_static_initializers%': '<(skia_static_initializers)', |
bsalomon@google.com | 4663822 | 2012-10-04 12:52:03 +0000 | [diff] [blame] | 119 | 'ios_sdk_version%': '6.0', |
edisonn@google.com | 184487c | 2013-03-08 18:00:16 +0000 | [diff] [blame] | 120 | 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 121 | |
reed@google.com | baa5d94 | 2012-08-08 20:39:17 +0000 | [diff] [blame] | 122 | # These are referenced by our .gypi files that list files (e.g. core.gypi) |
| 123 | # |
| 124 | 'skia_src_path%': '../src', |
| 125 | 'skia_include_path%': '../include', |
epoger@google.com | 573e8ba | 2012-03-16 18:28:24 +0000 | [diff] [blame] | 126 | }, |
| 127 | } |
| 128 | # Local Variables: |
| 129 | # tab-width:2 |
| 130 | # indent-tabs-mode:nil |
| 131 | # End: |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 132 | # vim: set expandtab tabstop=2 shiftwidth=2: |