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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 ], | 98 ], |
99 }], | 99 }], |
100 ], | 100 ], |
101 'direct_dependent_settings': { | 101 'direct_dependent_settings': { |
102 'include_dirs': [ | 102 'include_dirs': [ |
103 '../include/utils', | 103 '../include/utils', |
104 '../src/utils', | 104 '../src/utils', |
105 ], | 105 ], |
106 }, | 106 }, |
107 }, | 107 }, |
108 { | |
109 'target_name': 'android_utils', | |
110 'product_name': 'skia_android_utils', | |
111 'type': 'static_library', | |
112 'standalone_static_library': 1, | |
113 'dependencies': [ | |
114 'core.gyp:*', | |
115 ], | |
116 'sources': [ | |
117 '../src/utils/android/SkAndroidSDKCanvas.h', | |
118 '../src/utils/android/SkAndroidSDKCanvas.cpp', | |
119 ], | |
120 'direct_dependent_settings': { | |
121 'include_dirs': [ | |
122 '../src/utils/android', | |
123 ], | |
124 }, | |
125 }, | |
126 ], | 108 ], |
127 } | 109 } |
OLD | NEW |