| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 == "android"', { | 78 [ 'skia_os == "android"', { |
| 79 'sources': [ | |
| 80 '../src/core/SkPaintOptionsAndroid.cpp', | |
| 81 ], | |
| 82 'dependencies': [ | 79 'dependencies': [ |
| 83 'android_deps.gyp:cpu_features', | 80 'android_deps.gyp:cpu_features', |
| 84 ], | 81 ], |
| 85 }], | 82 }], |
| 86 [ 'skia_arch_type == "arm"', { | 83 [ 'skia_arch_type == "arm"', { |
| 87 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. | 84 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. |
| 88 'sources': [ | 85 'sources': [ |
| 89 '../src/core/SkUtilsArm.cpp', | 86 '../src/core/SkUtilsArm.cpp', |
| 90 '../src/core/SkUtilsArm.h', | 87 '../src/core/SkUtilsArm.h', |
| 91 ], | 88 ], |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 }, | 124 }, |
| 128 }, | 125 }, |
| 129 ], | 126 ], |
| 130 } | 127 } |
| 131 | 128 |
| 132 # Local Variables: | 129 # Local Variables: |
| 133 # tab-width:2 | 130 # tab-width:2 |
| 134 # indent-tabs-mode:nil | 131 # indent-tabs-mode:nil |
| 135 # End: | 132 # End: |
| 136 # vim: set expandtab tabstop=2 shiftwidth=2: | 133 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |