OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 # Mark all targets as test only. | 8 # Mark all targets as test only. |
9 testonly = true | 9 testonly = true |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "//v8:v8_external_startup_data_assets", | 58 "//v8:v8_external_startup_data_assets", |
59 ] | 59 ] |
60 sources = [ | 60 sources = [ |
61 "shell/assets/asset_file.html", | 61 "shell/assets/asset_file.html", |
62 "shell/assets/asset_icon.png", | 62 "shell/assets/asset_icon.png", |
63 "shell/assets/cookie_test.html", | 63 "shell/assets/cookie_test.html", |
64 "shell/assets/full_screen_video.js", | 64 "shell/assets/full_screen_video.js", |
65 "shell/assets/full_screen_video_inside_div_test.html", | 65 "shell/assets/full_screen_video_inside_div_test.html", |
66 "shell/assets/full_screen_video_test.html", | 66 "shell/assets/full_screen_video_test.html", |
67 "shell/assets/multiple_videos_test.html", | 67 "shell/assets/multiple_videos_test.html", |
68 "shell/assets/video.mp4", | 68 "shell/assets/video.webm", |
69 "shell/assets/visual_state_during_fullscreen_test.html", | 69 "shell/assets/visual_state_during_fullscreen_test.html", |
70 "shell/assets/visual_state_on_page_commit_visible_test.html", | 70 "shell/assets/visual_state_on_page_commit_visible_test.html", |
71 "shell/assets/visual_state_waits_for_js_detached_test.html", | 71 "shell/assets/visual_state_waits_for_js_detached_test.html", |
72 "shell/assets/visual_state_waits_for_js_test.html", | 72 "shell/assets/visual_state_waits_for_js_test.html", |
73 ] | 73 ] |
74 } | 74 } |
75 | 75 |
76 # GYP: //android_webview/android_webview_tests.gypi:libstandalonelibwebviewchrom
ium | 76 # GYP: //android_webview/android_webview_tests.gypi:libstandalonelibwebviewchrom
ium |
77 shared_library("libstandalonelibwebviewchromium") { | 77 shared_library("libstandalonelibwebviewchromium") { |
78 sources = [ | 78 sources = [ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ] | 171 ] |
172 } | 172 } |
173 | 173 |
174 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl | 174 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl |
175 shared_library("libdrawgl") { | 175 shared_library("libdrawgl") { |
176 sources = [ | 176 sources = [ |
177 "shell/src/draw_gl/draw_gl.cc", | 177 "shell/src/draw_gl/draw_gl.cc", |
178 ] | 178 ] |
179 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 179 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
180 } | 180 } |
OLD | NEW |