| OLD | NEW |
| 1 # Gyp for utils. | 1 # Gyp for utils. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'utils', | 5 'target_name': 'utils', |
| 6 'product_name': 'skia_utils', | 6 'product_name': 'skia_utils', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'core.gyp:*', | 10 'core.gyp:*', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 ], | 117 ], |
| 118 }], | 118 }], |
| 119 ], | 119 ], |
| 120 'direct_dependent_settings': { | 120 'direct_dependent_settings': { |
| 121 'include_dirs': [ | 121 'include_dirs': [ |
| 122 '../include/utils', | 122 '../include/utils', |
| 123 '../src/utils', | 123 '../src/utils', |
| 124 ], | 124 ], |
| 125 }, | 125 }, |
| 126 }, | 126 }, |
| 127 { |
| 128 'target_name': 'android_utils', |
| 129 'product_name': 'skia_android_utils', |
| 130 'type': 'static_library', |
| 131 'standalone_static_library': 1, |
| 132 'dependencies': [ |
| 133 'core.gyp:*', |
| 134 ], |
| 135 'sources': [ |
| 136 '../src/utils/android/SkAndroidSDKCanvas.h', |
| 137 '../src/utils/android/SkAndroidSDKCanvas.cpp', |
| 138 ], |
| 139 'direct_dependent_settings': { |
| 140 'include_dirs': [ |
| 141 '../src/utils/android', |
| 142 ], |
| 143 }, |
| 144 }, |
| 127 ], | 145 ], |
| 128 } | 146 } |
| OLD | NEW |