| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 }], | 76 }], |
| 77 [ 'skia_os == "win"', { | 77 [ 'skia_os == "win"', { |
| 78 'include_dirs': [ | 78 'include_dirs': [ |
| 79 'config/win', | 79 'config/win', |
| 80 ], | 80 ], |
| 81 'sources!': [ | 81 'sources!': [ |
| 82 '../include/core/SkMMapStream.h', | 82 '../include/core/SkMMapStream.h', |
| 83 '../src/core/SkMMapStream.cpp', | 83 '../src/core/SkMMapStream.cpp', |
| 84 ], | 84 ], |
| 85 }], | 85 }], |
| 86 [ 'skia_os == "android"', { | 86 [ 'skia_os in ("android", "nacl")', { |
| 87 'dependencies': [ | 87 'dependencies': [ |
| 88 'freetype.gyp:freetype', | 88 'freetype.gyp:freetype', |
| 89 ], | 89 ], |
| 90 }], | 90 }], |
| 91 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { | 91 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { |
| 92 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. | 92 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. |
| 93 'sources': [ | 93 'sources': [ |
| 94 '../src/core/SkUtilsArm.cpp', | 94 '../src/core/SkUtilsArm.cpp', |
| 95 '../src/core/SkUtilsArm.h', | 95 '../src/core/SkUtilsArm.h', |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ['skia_gpu == 1', { | 98 ['skia_gpu == 1', { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 ], | 135 ], |
| 136 }, | 136 }, |
| 137 ], | 137 ], |
| 138 } | 138 } |
| 139 | 139 |
| 140 # Local Variables: | 140 # Local Variables: |
| 141 # tab-width:2 | 141 # tab-width:2 |
| 142 # indent-tabs-mode:nil | 142 # indent-tabs-mode:nil |
| 143 # End: | 143 # End: |
| 144 # vim: set expandtab tabstop=2 shiftwidth=2: | 144 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |