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

Side by Side Diff: trunk/src/android_webview/android_webview_tests.gypi

Issue 183863005: Revert 253938 "Enable icu_use_data_file_flag on Android" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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
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 ], 13 ],
14 'variables': { 14 'variables': {
15 'apk_name': 'AndroidWebView', 15 'apk_name': 'AndroidWebView',
16 'java_in_dir': 'test/shell', 16 'java_in_dir': 'test/shell',
17 'native_lib_target': 'libstandalonelibwebviewchromium', 17 'native_lib_target': 'libstandalonelibwebviewchromium',
18 'resource_dir': 'test/shell/res', 18 'resource_dir': 'test/shell/res',
19 'additional_input_paths': [ 19 'additional_input_paths': [
20 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak', 20 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak',
21 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_file.html', 21 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_file.html',
22 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_icon.png', 22 '<(PRODUCT_DIR)/android_webview_apk/assets/asset_icon.png',
23 '<(PRODUCT_DIR)/android_webview_apk/assets/full_screen_video_test.html ', 23 '<(PRODUCT_DIR)/android_webview_apk/assets/full_screen_video_test.html ',
24 ], 24 ],
25 'conditions': [
26 ['icu_use_data_file_flag==1', {
27 'additional_input_paths': [
28 '<(PRODUCT_DIR)/icudtl.dat',
29 ],
30 }],
31 ],
32 }, 25 },
33 'copies': [ 26 'copies': [
34 { 27 {
35 'destination': '<(PRODUCT_DIR)/android_webview_apk/assets', 28 'destination': '<(PRODUCT_DIR)/android_webview_apk/assets',
36 'files': [ 29 'files': [
37 '<(java_in_dir)/assets/asset_file.html', 30 '<(java_in_dir)/assets/asset_file.html',
38 '<(java_in_dir)/assets/asset_icon.png', 31 '<(java_in_dir)/assets/asset_icon.png',
39 '<(java_in_dir)/assets/full_screen_video_test.html', 32 '<(java_in_dir)/assets/full_screen_video_test.html',
40 ], 33 ],
41 'conditions': [
42 ['icu_use_data_file_flag==1', {
43 'files': [
44 '<(PRODUCT_DIR)/icudtl.dat',
45 ],
46 }],
47 ],
48 }, 34 },
49 ], 35 ],
50 'includes': [ '../build/java_apk.gypi' ], 36 'includes': [ '../build/java_apk.gypi' ],
51 }, 37 },
52 { 38 {
53 # android_webview_apk creates a .jar as a side effect. Any java 39 # android_webview_apk creates a .jar as a side effect. Any java
54 # targets that need that .jar in their classpath should depend on this 40 # targets that need that .jar in their classpath should depend on this
55 # target. For more details see the chromium_testshell_java target. 41 # target. For more details see the chromium_testshell_java target.
56 'target_name': 'android_webview_apk_java', 42 'target_name': 'android_webview_apk_java',
57 'type': 'none', 43 'type': 'none',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'android_webview_unittests', 123 'android_webview_unittests',
138 ], 124 ],
139 'variables': { 125 'variables': {
140 'test_suite_name': 'android_webview_unittests', 126 'test_suite_name': 'android_webview_unittests',
141 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi ew_unittests<(SHARED_LIB_SUFFIX)', 127 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi ew_unittests<(SHARED_LIB_SUFFIX)',
142 }, 128 },
143 'includes': [ '../build/apk_test.gypi' ], 129 'includes': [ '../build/apk_test.gypi' ],
144 }, 130 },
145 ], 131 ],
146 } 132 }
OLDNEW
« no previous file with comments | « trunk/src/DEPS ('k') | trunk/src/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698