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

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: change lua extension lib build to be seperate target 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 13 matching lines...) Expand all
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_win_exceptions%': 0, 124 'skia_win_exceptions%': 0,
124 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', 125 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)',
125 'skia_profile_enabled%': '<(skia_profile_enabled)', 126 'skia_profile_enabled%': '<(skia_profile_enabled)',
126 'skia_shared_lib%': '<(skia_shared_lib)', 127 'skia_shared_lib%': '<(skia_shared_lib)',
128 'skia_lua%': '<(skia_lua)',
127 'skia_static_initializers%': '<(skia_static_initializers)', 129 'skia_static_initializers%': '<(skia_static_initializers)',
128 'ios_sdk_version%': '6.0', 130 'ios_sdk_version%': '6.0',
129 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', 131 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
130 132
131 'skia_cros_target%': '', 133 'skia_cros_target%': '',
132 134
133 # These are referenced by our .gypi files that list files (e.g. core.gypi) 135 # These are referenced by our .gypi files that list files (e.g. core.gypi)
134 # 136 #
135 'skia_src_path%': '../src', 137 'skia_src_path%': '../src',
136 'skia_include_path%': '../include', 138 'skia_include_path%': '../include',
137 }, 139 },
138 } 140 }
139 # Local Variables: 141 # Local Variables:
140 # tab-width:2 142 # tab-width:2
141 # indent-tabs-mode:nil 143 # indent-tabs-mode:nil
142 # End: 144 # End:
143 # vim: set expandtab tabstop=2 shiftwidth=2: 145 # 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