| OLD | NEW |
| 1 # Core Skia library code. | 1 # Core Skia library code. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'core', | 5 'target_name': 'core', |
| 6 'product_name': 'skia_core', | 6 'product_name': 'skia_core', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', | 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', | 68 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
| 69 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', | 69 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', |
| 70 ], | 70 ], |
| 71 }, | 71 }, |
| 72 }], | 72 }], |
| 73 [ 'skia_os == "win"', { | 73 [ 'skia_os == "win"', { |
| 74 'include_dirs': [ | 74 'include_dirs': [ |
| 75 'config/win', | 75 'config/win', |
| 76 ], | 76 ], |
| 77 }], | 77 }], |
| 78 [ 'skia_os == "nacl"', { | |
| 79 'dependencies': [ | |
| 80 'freetype.gyp:freetype', | |
| 81 ], | |
| 82 }], | |
| 83 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { | 78 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { |
| 84 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. | 79 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. |
| 85 'sources': [ | 80 'sources': [ |
| 86 '../src/core/SkUtilsArm.cpp', | 81 '../src/core/SkUtilsArm.cpp', |
| 87 '../src/core/SkUtilsArm.h', | 82 '../src/core/SkUtilsArm.h', |
| 88 ], | 83 ], |
| 89 }], | 84 }], |
| 90 ['skia_gpu == 1', { | 85 ['skia_gpu == 1', { |
| 91 'include_dirs': [ | 86 'include_dirs': [ |
| 92 '../include/gpu', | 87 '../include/gpu', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ], | 122 ], |
| 128 }, | 123 }, |
| 129 ], | 124 ], |
| 130 } | 125 } |
| 131 | 126 |
| 132 # Local Variables: | 127 # Local Variables: |
| 133 # tab-width:2 | 128 # tab-width:2 |
| 134 # indent-tabs-mode:nil | 129 # indent-tabs-mode:nil |
| 135 # End: | 130 # End: |
| 136 # vim: set expandtab tabstop=2 shiftwidth=2: | 131 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |