| 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 | 5 |
| 6 # GYP file for images project. | 6 # GYP file for images project. |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'images', | 10 'target_name': 'images', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'conditions': [ | 100 'conditions': [ |
| 101 [ 'skia_android_framework == 1', { | 101 [ 'skia_android_framework == 1', { |
| 102 # The android framework disables these decoders as they are of lit
tle use to | 102 # The android framework disables these decoders as they are of lit
tle use to |
| 103 # Java applications that can't take advantage of the compressed fo
rmats. | 103 # Java applications that can't take advantage of the compressed fo
rmats. |
| 104 'sources!': [ | 104 'sources!': [ |
| 105 '../src/images/SkKTXImageEncoder.cpp', | 105 '../src/images/SkKTXImageEncoder.cpp', |
| 106 ], | 106 ], |
| 107 }], | 107 }], |
| 108 ], | 108 ], |
| 109 }], | 109 }], |
| 110 [ 'skia_os == "chromeos"', { | |
| 111 'dependencies': [ | |
| 112 'libpng.gyp:libpng', | |
| 113 ], | |
| 114 }], | |
| 115 [ 'skia_os == "ios"', { | 110 [ 'skia_os == "ios"', { |
| 116 'include_dirs': [ | 111 'include_dirs': [ |
| 117 '../include/utils/mac', | 112 '../include/utils/mac', |
| 118 ], | 113 ], |
| 119 }], | 114 }], |
| 120 ], | 115 ], |
| 121 'direct_dependent_settings': { | 116 'direct_dependent_settings': { |
| 122 'include_dirs': [ | 117 'include_dirs': [ |
| 123 '../include/images', | 118 '../include/images', |
| 124 ], | 119 ], |
| 125 }, | 120 }, |
| 126 }, | 121 }, |
| 127 ], | 122 ], |
| 128 } | 123 } |
| OLD | NEW |