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 14 matching lines...) Expand all Loading... |
25 '<(asset_location)/webviewchromium.pak', | 25 '<(asset_location)/webviewchromium.pak', |
26 '<(asset_location)/en-US.pak', | 26 '<(asset_location)/en-US.pak', |
27 '<(asset_location)/asset_file.html', | 27 '<(asset_location)/asset_file.html', |
28 '<(asset_location)/cookie_test.html', | 28 '<(asset_location)/cookie_test.html', |
29 '<(asset_location)/asset_icon.png', | 29 '<(asset_location)/asset_icon.png', |
30 '<(asset_location)/full_screen_video.js', | 30 '<(asset_location)/full_screen_video.js', |
31 '<(asset_location)/full_screen_video_test.html', | 31 '<(asset_location)/full_screen_video_test.html', |
32 '<(asset_location)/full_screen_video_inside_div_test.html', | 32 '<(asset_location)/full_screen_video_inside_div_test.html', |
33 '<(asset_location)/multiple_videos_test.html', | 33 '<(asset_location)/multiple_videos_test.html', |
34 '<(asset_location)/video.mp4', | 34 '<(asset_location)/video.mp4', |
| 35 '<(asset_location)/visual_state_during_fullscreen_test.html', |
35 '<(asset_location)/visual_state_waits_for_js_test.html', | 36 '<(asset_location)/visual_state_waits_for_js_test.html', |
36 '<@(snapshot_additional_input_paths)', | 37 '<@(snapshot_additional_input_paths)', |
37 ], | 38 ], |
38 'conditions': [ | 39 'conditions': [ |
39 ['icu_use_data_file_flag==1', { | 40 ['icu_use_data_file_flag==1', { |
40 'additional_input_paths': [ | 41 'additional_input_paths': [ |
41 '<(asset_location)/icudtl.dat', | 42 '<(asset_location)/icudtl.dat', |
42 ], | 43 ], |
43 }], | 44 }], |
44 ], | 45 ], |
45 'includes': [ 'snapshot_copying.gypi' ], | 46 'includes': [ 'snapshot_copying.gypi' ], |
46 }, | 47 }, |
47 'copies': [ | 48 'copies': [ |
48 { | 49 { |
49 'destination': '<(asset_location)', | 50 'destination': '<(asset_location)', |
50 'files': [ | 51 'files': [ |
51 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak', | 52 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak', |
52 '<(PRODUCT_DIR)/android_webview_assets/locales/en-US.pak', | 53 '<(PRODUCT_DIR)/android_webview_assets/locales/en-US.pak', |
53 '<(java_in_dir)/assets/asset_file.html', | 54 '<(java_in_dir)/assets/asset_file.html', |
54 '<(java_in_dir)/assets/asset_icon.png', | 55 '<(java_in_dir)/assets/asset_icon.png', |
55 '<(java_in_dir)/assets/cookie_test.html', | 56 '<(java_in_dir)/assets/cookie_test.html', |
56 '<(java_in_dir)/assets/full_screen_video.js', | 57 '<(java_in_dir)/assets/full_screen_video.js', |
57 '<(java_in_dir)/assets/full_screen_video_test.html', | 58 '<(java_in_dir)/assets/full_screen_video_test.html', |
58 '<(java_in_dir)/assets/full_screen_video_inside_div_test.html', | 59 '<(java_in_dir)/assets/full_screen_video_inside_div_test.html', |
59 '<(java_in_dir)/assets/multiple_videos_test.html', | 60 '<(java_in_dir)/assets/multiple_videos_test.html', |
60 '<(java_in_dir)/assets/video.mp4', | 61 '<(java_in_dir)/assets/video.mp4', |
| 62 '<(java_in_dir)/assets/visual_state_during_fullscreen_test.html', |
61 '<(java_in_dir)/assets/visual_state_waits_for_js_test.html', | 63 '<(java_in_dir)/assets/visual_state_waits_for_js_test.html', |
62 '<@(snapshot_copy_files)', | 64 '<@(snapshot_copy_files)', |
63 ], | 65 ], |
64 'conditions': [ | 66 'conditions': [ |
65 ['icu_use_data_file_flag==1', { | 67 ['icu_use_data_file_flag==1', { |
66 'files': [ | 68 'files': [ |
67 '<(PRODUCT_DIR)/icudtl.dat', | 69 '<(PRODUCT_DIR)/icudtl.dat', |
68 ], | 70 ], |
69 }], | 71 }], |
70 ], | 72 ], |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 ], | 206 ], |
205 }, | 207 }, |
206 { | 208 { |
207 'target_name': 'libstandalonelibwebviewchromium', | 209 'target_name': 'libstandalonelibwebviewchromium', |
208 'includes': [ | 210 'includes': [ |
209 'libwebviewchromium.gypi', | 211 'libwebviewchromium.gypi', |
210 ], | 212 ], |
211 }, | 213 }, |
212 ], | 214 ], |
213 } | 215 } |
OLD | NEW |