| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # Gyp for utils. | 5 # Gyp for utils. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'utils', | 9 'target_name': 'utils', |
| 10 'product_name': 'skia_utils', | 10 'product_name': 'skia_utils', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 }, | 52 }, |
| 53 },{ #else if 'skia_os != "mac"' | 53 },{ #else if 'skia_os != "mac"' |
| 54 'include_dirs!': [ | 54 'include_dirs!': [ |
| 55 '../include/utils/mac', | 55 '../include/utils/mac', |
| 56 ], | 56 ], |
| 57 'sources!': [ | 57 'sources!': [ |
| 58 '../include/utils/mac/SkCGUtils.h', | 58 '../include/utils/mac/SkCGUtils.h', |
| 59 '../src/utils/mac/SkCreateCGImageRef.cpp', | 59 '../src/utils/mac/SkCreateCGImageRef.cpp', |
| 60 ], | 60 ], |
| 61 }], | 61 }], |
| 62 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 62 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
| 63 },{ #else if 'skia_os not in ["linux", "freebsd", "openbsd", "solaris",
"chromeos"]' | 63 },{ #else if 'skia_os not in ["linux", "freebsd", "openbsd", "solaris"]' |
| 64 'include_dirs!': [ | 64 'include_dirs!': [ |
| 65 '../include/utils/unix', | 65 '../include/utils/unix', |
| 66 ], | 66 ], |
| 67 }], | 67 }], |
| 68 [ 'skia_os == "win"', { | 68 [ 'skia_os == "win"', { |
| 69 'direct_dependent_settings': { | 69 'direct_dependent_settings': { |
| 70 'include_dirs': [ | 70 'include_dirs': [ |
| 71 '../include/utils/win', | 71 '../include/utils/win', |
| 72 ], | 72 ], |
| 73 }, | 73 }, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 99 ], | 99 ], |
| 100 'direct_dependent_settings': { | 100 'direct_dependent_settings': { |
| 101 'include_dirs': [ | 101 'include_dirs': [ |
| 102 '../include/utils', | 102 '../include/utils', |
| 103 '../src/utils', | 103 '../src/utils', |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 }, | 106 }, |
| 107 ], | 107 ], |
| 108 } | 108 } |
| OLD | NEW |