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 # This GYP file stores the dependencies necessary to build Skia on the Android | 6 # This GYP file stores the dependencies necessary to build Skia on the Android |
7 # platform. The OS doesn't provide many stable libraries as part of the | 7 # platform. The OS doesn't provide many stable libraries as part of the |
8 # distribution so we have to build a few of them ourselves. | 8 # distribution so we have to build a few of them ourselves. |
9 # | 9 # |
10 # We tried adding this gyp file to the android directory at the root of | 10 # We tried adding this gyp file to the android directory at the root of |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'direct_dependent_settings': { | 57 'direct_dependent_settings': { |
58 'libraries' : [ | 58 'libraries' : [ |
59 '-ljpeg', | 59 '-ljpeg', |
60 ], | 60 ], |
61 'include_dirs': [ | 61 'include_dirs': [ |
62 'external/libjpeg-turbo', | 62 'external/libjpeg-turbo', |
63 ], | 63 ], |
64 }, | 64 }, |
65 }, | 65 }, |
66 { | 66 { |
67 'target_name': 'dng_sdk', | 67 'target_name': 'libdng_sdk', |
68 'type': 'none', | 68 'type': 'none', |
69 'direct_dependent_settings': { | 69 'direct_dependent_settings': { |
70 'libraries' : [ | 70 'libraries' : [ |
71 '-ldng_sdk', | 71 '-ldng_sdk', |
72 ], | 72 ], |
73 'include_dirs': [ | 73 'include_dirs': [ |
74 'external/dng_sdk', | 74 'external/dng_sdk', |
75 ], | 75 ], |
76 }, | 76 }, |
77 }, | 77 }, |
78 { | 78 { |
79 'target_name': 'piex', | 79 'target_name': 'libpiex', |
80 'type': 'none', | 80 'type': 'none', |
81 'direct_dependent_settings': { | 81 'direct_dependent_settings': { |
82 'libraries' : [ | 82 'libraries' : [ |
83 '-lpiex', | 83 '-lpiex', |
84 ], | 84 ], |
85 'include_dirs': [ | 85 'include_dirs': [ |
86 'external/piex', | 86 'external/piex', |
87 ], | 87 ], |
88 }, | 88 }, |
89 }, | 89 }, |
90 { | 90 { |
91 'target_name': 'cpu_features', | 91 'target_name': 'cpu_features', |
92 'type': 'none', | 92 'type': 'none', |
93 }, | 93 }, |
94 ], | 94 ], |
95 } | 95 } |
96 ], | 96 ], |
97 ], | 97 ], |
98 } | 98 } |
OLD | NEW |