| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'dependencies': [ | 79 'dependencies': [ |
| 80 'android_deps.gyp:cpu_features', | 80 'android_deps.gyp:cpu_features', |
| 81 ], | 81 ], |
| 82 }], | 82 }], |
| 83 [ 'skia_android_framework', { |
| 84 'libraries': [ |
| 85 # Required for SkAtomics_android.h |
| 86 '-lcutils', |
| 87 ], |
| 88 }], |
| 83 [ 'skia_arch_type == "arm"', { | 89 [ 'skia_arch_type == "arm"', { |
| 84 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. | 90 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. |
| 85 'sources': [ | 91 'sources': [ |
| 86 '../src/core/SkUtilsArm.cpp', | 92 '../src/core/SkUtilsArm.cpp', |
| 87 '../src/core/SkUtilsArm.h', | 93 '../src/core/SkUtilsArm.h', |
| 88 ], | 94 ], |
| 89 }], | 95 }], |
| 90 ['skia_gpu == 1', { | 96 ['skia_gpu == 1', { |
| 91 'include_dirs': [ | 97 'include_dirs': [ |
| 92 '../include/gpu', | 98 '../include/gpu', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 115 [ 'skia_os == "win"', { | 121 [ 'skia_os == "win"', { |
| 116 'include_dirs': [ | 122 'include_dirs': [ |
| 117 'config/win', | 123 'config/win', |
| 118 ], | 124 ], |
| 119 }], | 125 }], |
| 120 ], | 126 ], |
| 121 }, | 127 }, |
| 122 }, | 128 }, |
| 123 ], | 129 ], |
| 124 } | 130 } |
| OLD | NEW |