OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 'target_name': 'android_webview_apk', | 7 'target_name': 'android_webview_apk', |
8 'type': 'none', | 8 'type': 'none', |
9 'dependencies': [ | 9 'dependencies': [ |
10 'libstandalonelibwebviewchromium', | 10 'libstandalonelibwebviewchromium', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'includes': [ '../build/apk_test.gypi' ], | 192 'includes': [ '../build/apk_test.gypi' ], |
193 }, | 193 }, |
194 { | 194 { |
195 'target_name': 'libdrawgl', | 195 'target_name': 'libdrawgl', |
196 'type': 'shared_library', | 196 'type': 'shared_library', |
197 # Do not depend on any other component here, since this target | 197 # Do not depend on any other component here, since this target |
198 # builds a separate shared library! | 198 # builds a separate shared library! |
199 'include_dirs': [ | 199 'include_dirs': [ |
200 '..', | 200 '..', |
201 ], | 201 ], |
| 202 'variables': { |
| 203 # This library uses native JNI exports; tell gyp so that the required |
| 204 # symbols will be kept. |
| 205 'use_native_jni_exports': 1, |
| 206 }, |
202 'sources': [ | 207 'sources': [ |
203 '../android_webview/test/shell/src/draw_gl/draw_gl.cc', | 208 '../android_webview/test/shell/src/draw_gl/draw_gl.cc', |
204 ], | 209 ], |
205 }, | 210 }, |
206 { | 211 { |
207 'target_name': 'libstandalonelibwebviewchromium', | 212 'target_name': 'libstandalonelibwebviewchromium', |
208 'includes': [ | 213 'includes': [ |
209 'libwebviewchromium.gypi', | 214 'libwebviewchromium.gypi', |
210 ], | 215 ], |
211 }, | 216 }, |
212 ], | 217 ], |
213 } | 218 } |
OLD | NEW |