Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: android_webview/android_webview_tests.gypi

Issue 843103003: android: Hide JNI exports by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use a blacklist instead of a whitelist Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/android/android_exports.gyp » ('j') | build/android/android_exports.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/android/android_exports.gyp » ('j') | build/android/android_exports.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698