Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Side by Side Diff: gyp/common_variables.gypi

Issue 16099014: enable shared lib support in linux for lua (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'skia_shared_lib%': 0,
94 'skia_lua%': 0,
94 }, 95 },
95 96
96 'conditions': [ 97 'conditions': [
97 [ 'skia_os == "win" and skia_arch_width == 32 or ' 98 [ 'skia_os == "win" and skia_arch_width == 32 or '
98 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or ' 99 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] or '
99 'skia_os == "mac" and skia_arch_width == 32', { 100 'skia_os == "mac" and skia_arch_width == 32', {
100 'skia_warnings_as_errors%': 1, 101 'skia_warnings_as_errors%': 1,
101 }, { 102 }, {
102 'skia_warnings_as_errors%': 0, 103 'skia_warnings_as_errors%': 0,
103 }], 104 }],
(...skipping 12 matching lines...) Expand all
116 'skia_android_path_rendering%': '<(skia_android_path_rendering)', 117 'skia_android_path_rendering%': '<(skia_android_path_rendering)',
117 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)', 118 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)',
118 'skia_angle%': '<(skia_angle)', 119 'skia_angle%': '<(skia_angle)',
119 'skia_arch_width%': '<(skia_arch_width)', 120 'skia_arch_width%': '<(skia_arch_width)',
120 'skia_arch_type%': '<(skia_arch_type)', 121 'skia_arch_type%': '<(skia_arch_type)',
121 'skia_directwrite%': '<(skia_directwrite)', 122 'skia_directwrite%': '<(skia_directwrite)',
122 'skia_gpu%': '<(skia_gpu)', 123 'skia_gpu%': '<(skia_gpu)',
123 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', 124 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)',
124 'skia_profile_enabled%': '<(skia_profile_enabled)', 125 'skia_profile_enabled%': '<(skia_profile_enabled)',
125 'skia_shared_lib%': '<(skia_shared_lib)', 126 'skia_shared_lib%': '<(skia_shared_lib)',
127 'skia_lua%': '<(skia_lua)',
126 'skia_static_initializers%': '<(skia_static_initializers)', 128 'skia_static_initializers%': '<(skia_static_initializers)',
127 'ios_sdk_version%': '6.0', 129 'ios_sdk_version%': '6.0',
128 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', 130 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
129 131
130 'skia_cros_target%': '', 132 'skia_cros_target%': '',
131 133
132 # These are referenced by our .gypi files that list files (e.g. core.gypi) 134 # These are referenced by our .gypi files that list files (e.g. core.gypi)
133 # 135 #
134 'skia_src_path%': '../src', 136 'skia_src_path%': '../src',
135 'skia_include_path%': '../include', 137 'skia_include_path%': '../include',
136 }, 138 },
137 } 139 }
138 # Local Variables: 140 # Local Variables:
139 # tab-width:2 141 # tab-width:2
140 # indent-tabs-mode:nil 142 # indent-tabs-mode:nil
141 # End: 143 # End:
142 # vim: set expandtab tabstop=2 shiftwidth=2: 144 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | gyp/images.gyp » ('j') | gyp/images.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698