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

Side by Side Diff: android_webview/android_webview_tests.gypi

Issue 1577433004: Flip proprietary codecs to false for Android chromium builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Throw all the things. Created 4 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
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 # GN: //android_webview/test:android_webview_apk 6 # GN: //android_webview/test:android_webview_apk
7 { 7 {
8 'target_name': 'android_webview_apk', 8 'target_name': 'android_webview_apk',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 16 matching lines...) Expand all
27 'snapshot_copy_files': '<(snapshot_copy_files)', 27 'snapshot_copy_files': '<(snapshot_copy_files)',
28 'additional_input_paths': [ 28 'additional_input_paths': [
29 '<(asset_location)/webviewchromium.pak', 29 '<(asset_location)/webviewchromium.pak',
30 '<(asset_location)/asset_file.html', 30 '<(asset_location)/asset_file.html',
31 '<(asset_location)/cookie_test.html', 31 '<(asset_location)/cookie_test.html',
32 '<(asset_location)/asset_icon.png', 32 '<(asset_location)/asset_icon.png',
33 '<(asset_location)/full_screen_video.js', 33 '<(asset_location)/full_screen_video.js',
34 '<(asset_location)/full_screen_video_test.html', 34 '<(asset_location)/full_screen_video_test.html',
35 '<(asset_location)/full_screen_video_inside_div_test.html', 35 '<(asset_location)/full_screen_video_inside_div_test.html',
36 '<(asset_location)/multiple_videos_test.html', 36 '<(asset_location)/multiple_videos_test.html',
37 '<(asset_location)/video.mp4', 37 '<(asset_location)/video.mp4',
boliu 2016/03/09 22:23:33 Should the mp4 one just be removed? Is there value
DaleCurtis 2016/03/09 23:58:54 Good point. Done.
38 '<(asset_location)/video.webm',
38 '<(asset_location)/visual_state_during_fullscreen_test.html', 39 '<(asset_location)/visual_state_during_fullscreen_test.html',
39 '<(asset_location)/visual_state_waits_for_js_test.html', 40 '<(asset_location)/visual_state_waits_for_js_test.html',
40 '<(asset_location)/visual_state_waits_for_js_detached_test.html', 41 '<(asset_location)/visual_state_waits_for_js_detached_test.html',
41 '<(asset_location)/visual_state_on_page_commit_visible_test.html', 42 '<(asset_location)/visual_state_on_page_commit_visible_test.html',
42 '<@(snapshot_additional_input_paths)', 43 '<@(snapshot_additional_input_paths)',
43 ], 44 ],
44 'conditions': [ 45 'conditions': [
45 ['icu_use_data_file_flag==1', { 46 ['icu_use_data_file_flag==1', {
46 'additional_input_paths': [ 47 'additional_input_paths': [
47 '<(asset_location)/icudtl.dat', 48 '<(asset_location)/icudtl.dat',
48 ], 49 ],
49 }], 50 }],
50 ], 51 ],
51 'includes': [ 'snapshot_copying.gypi' ], 52 'includes': [ 'snapshot_copying.gypi' ],
52 }, 53 },
53 'copies': [ 54 'copies': [
54 { 55 {
55 'destination': '<(asset_location)', 56 'destination': '<(asset_location)',
56 'files': [ 57 'files': [
57 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak', 58 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
58 '<(java_in_dir)/assets/asset_file.html', 59 '<(java_in_dir)/assets/asset_file.html',
59 '<(java_in_dir)/assets/asset_icon.png', 60 '<(java_in_dir)/assets/asset_icon.png',
60 '<(java_in_dir)/assets/cookie_test.html', 61 '<(java_in_dir)/assets/cookie_test.html',
61 '<(java_in_dir)/assets/full_screen_video.js', 62 '<(java_in_dir)/assets/full_screen_video.js',
62 '<(java_in_dir)/assets/full_screen_video_test.html', 63 '<(java_in_dir)/assets/full_screen_video_test.html',
63 '<(java_in_dir)/assets/full_screen_video_inside_div_test.html', 64 '<(java_in_dir)/assets/full_screen_video_inside_div_test.html',
64 '<(java_in_dir)/assets/multiple_videos_test.html', 65 '<(java_in_dir)/assets/multiple_videos_test.html',
65 '<(java_in_dir)/assets/video.mp4', 66 '<(java_in_dir)/assets/video.mp4',
67 '<(java_in_dir)/assets/video.webm',
66 '<(java_in_dir)/assets/visual_state_during_fullscreen_test.html', 68 '<(java_in_dir)/assets/visual_state_during_fullscreen_test.html',
67 '<(java_in_dir)/assets/visual_state_waits_for_js_test.html', 69 '<(java_in_dir)/assets/visual_state_waits_for_js_test.html',
68 '<(java_in_dir)/assets/visual_state_waits_for_js_detached_test.html' , 70 '<(java_in_dir)/assets/visual_state_waits_for_js_detached_test.html' ,
69 '<(java_in_dir)/assets/visual_state_on_page_commit_visible_test.html ', 71 '<(java_in_dir)/assets/visual_state_on_page_commit_visible_test.html ',
70 '<@(snapshot_copy_files)', 72 '<@(snapshot_copy_files)',
71 ], 73 ],
72 'conditions': [ 74 'conditions': [
73 ['icu_use_data_file_flag==1', { 75 ['icu_use_data_file_flag==1', {
74 'files': [ 76 'files': [
75 '<(PRODUCT_DIR)/icudtl.dat', 77 '<(PRODUCT_DIR)/icudtl.dat',
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ], 268 ],
267 'sources': [ 269 'sources': [
268 'android_webview_unittests_apk.isolate', 270 'android_webview_unittests_apk.isolate',
269 ], 271 ],
270 }, 272 },
271 ] 273 ]
272 } 274 }
273 ], 275 ],
274 ] 276 ]
275 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698