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

Unified Diff: gyp/skia_base_libs.gyp

Issue 14582008: Enable shared library build (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: rebase Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/shapeops_tool.gyp ('k') | gyp/tests.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/skia_base_libs.gyp
===================================================================
--- gyp/skia_base_libs.gyp (revision 9315)
+++ gyp/skia_base_libs.gyp (working copy)
@@ -3,8 +3,11 @@
'variables': {
'component_libs': [
'core.gyp:core',
+ 'effects.gyp:effects',
+ 'images.gyp:images',
'opts.gyp:opts',
'ports.gyp:ports',
+ 'sfnt.gyp:sfnt',
'utils.gyp:utils',
],
'conditions': [
@@ -34,7 +37,26 @@
'targets': [
{
'target_name': 'skia_base_libs',
- 'type': 'none',
+ 'conditions': [
+ [ 'skia_shared_lib', {
+ 'product_name': 'skia',
+ 'type': 'shared_library',
+ 'sources': [
+ '../src/dummy.cpp',
+ ],
+ 'conditions': [
+ [ 'skia_os == "mac" or skia_os == "ios"', {
+ 'xcode_settings': {
+ 'OTHER_LDFLAGS': [
+ '-Wl,-all_load',
+ ],
+ },
+ }],
+ ],
+ }, {
+ 'type': 'none',
+ }],
+ ],
'dependencies': [
'<@(component_libs)',
],
« no previous file with comments | « gyp/shapeops_tool.gyp ('k') | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698