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

Side by Side Diff: android_webview/android_webview_tests.gypi

Issue 414503004: android: Use hw acceleration in android_webview_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | android_webview/javatests/src/org/chromium/android_webview/test/AndroidScrollIntegrationTest.java » ('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 'libwebviewchromium', 10 'libwebviewchromium',
11 'android_webview_java', 11 'android_webview_java',
12 'android_webview_pak', 12 'android_webview_pak',
13 'libdrawgl',
13 ], 14 ],
14 'variables': { 15 'variables': {
15 'apk_name': 'AndroidWebView', 16 'apk_name': 'AndroidWebView',
16 'java_in_dir': 'test/shell', 17 'java_in_dir': 'test/shell',
17 'native_lib_target': 'libstandalonelibwebviewchromium', 18 'native_lib_target': 'libstandalonelibwebviewchromium',
18 'resource_dir': 'test/shell/res', 19 'resource_dir': 'test/shell/res',
19 'extensions_to_not_compress': 'pak', 20 'extensions_to_not_compress': 'pak',
21 'extra_native_libs': ['<(SHARED_LIB_DIR)/libdrawgl.>(android_product_ext ension)'],
20 'additional_input_paths': [ 22 'additional_input_paths': [
21 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak', 23 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak',
22 '<(PRODUCT_DIR)/android_webview_apk/assets/en-US.pak', 24 '<(PRODUCT_DIR)/android_webview_apk/assets/en-US.pak',
23 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_file.html', 25 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_file.html',
24 '<(PRODUCT_DIR)/android_webview_apk/assets/cookie_test.html', 26 '<(PRODUCT_DIR)/android_webview_apk/assets/cookie_test.html',
25 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_icon.png', 27 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_icon.png',
26 '<(PRODUCT_DIR)/android_webview_apk/assets/full_screen_video_test.html ', 28 '<(PRODUCT_DIR)/android_webview_apk/assets/full_screen_video_test.html ',
27 ], 29 ],
28 'conditions': [ 30 'conditions': [
29 ['icu_use_data_file_flag==1', { 31 ['icu_use_data_file_flag==1', {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 'copies': [ 157 'copies': [
156 { 158 {
157 'destination': '<(PRODUCT_DIR)/android_webview_unittests_apk/assets', 159 'destination': '<(PRODUCT_DIR)/android_webview_unittests_apk/assets',
158 'files': [ 160 'files': [
159 'test/unittest/assets/asset_file.ogg', 161 'test/unittest/assets/asset_file.ogg',
160 ], 162 ],
161 }, 163 },
162 ], 164 ],
163 'includes': [ '../build/apk_test.gypi' ], 165 'includes': [ '../build/apk_test.gypi' ],
164 }, 166 },
167 {
168 'target_name': 'libdrawgl',
169 'type': 'shared_library',
170 # Do not depend on any other component here, since this target
171 # builds a separate shared library!
172 'include_dirs': [
173 '..',
174 ],
175 'sources': [
176 '../android_webview/test/shell/src/draw_gl/draw_gl.cc',
177 ],
178 },
165 ], 179 ],
166 } 180 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/javatests/src/org/chromium/android_webview/test/AndroidScrollIntegrationTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698