| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'includes': [ '../build/apk_test.gypi' ], | 185 'includes': [ '../build/apk_test.gypi' ], |
| 186 }, | 186 }, |
| 187 { | 187 { |
| 188 'target_name': 'libdrawgl', | 188 'target_name': 'libdrawgl', |
| 189 'type': 'shared_library', | 189 'type': 'shared_library', |
| 190 # Do not depend on any other component here, since this target | 190 # Do not depend on any other component here, since this target |
| 191 # builds a separate shared library! | 191 # builds a separate shared library! |
| 192 'include_dirs': [ | 192 'include_dirs': [ |
| 193 '..', | 193 '..', |
| 194 ], | 194 ], |
| 195 'variables': { |
| 196 # This library uses native JNI exports; tell gyp so that the required |
| 197 # symbols will be kept. |
| 198 'use_native_jni_exports': 1, |
| 199 }, |
| 195 'sources': [ | 200 'sources': [ |
| 196 '../android_webview/test/shell/src/draw_gl/draw_gl.cc', | 201 '../android_webview/test/shell/src/draw_gl/draw_gl.cc', |
| 197 ], | 202 ], |
| 198 }, | 203 }, |
| 199 { | 204 { |
| 200 'target_name': 'libstandalonelibwebviewchromium', | 205 'target_name': 'libstandalonelibwebviewchromium', |
| 201 'includes': [ | 206 'includes': [ |
| 202 'libwebviewchromium.gypi', | 207 'libwebviewchromium.gypi', |
| 203 ], | 208 ], |
| 204 }, | 209 }, |
| 205 ], | 210 ], |
| 206 } | 211 } |
| OLD | NEW |