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

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: Added gn support 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') | no next file with comments »
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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | build/android/android_exports.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698