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

Side by Side Diff: android_webview/test/BUILD.gn

Issue 2901333003: [WebView] Flatten lib/main to lib (Closed)
Patch Set: nits Created 3 years, 7 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
« no previous file with comments | « android_webview/lib/webview_tests.cc ('k') | chrome/browser/android/monochrome_entry_point.cc » ('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 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 "shell/assets/video.webm", 81 "shell/assets/video.webm",
82 "shell/assets/visual_state_during_fullscreen_test.html", 82 "shell/assets/visual_state_during_fullscreen_test.html",
83 "shell/assets/visual_state_on_page_commit_visible_test.html", 83 "shell/assets/visual_state_on_page_commit_visible_test.html",
84 "shell/assets/visual_state_waits_for_js_detached_test.html", 84 "shell/assets/visual_state_waits_for_js_detached_test.html",
85 "shell/assets/visual_state_waits_for_js_test.html", 85 "shell/assets/visual_state_waits_for_js_test.html",
86 ] 86 ]
87 } 87 }
88 88
89 shared_library("libstandalonelibwebviewchromium") { 89 shared_library("libstandalonelibwebviewchromium") {
90 sources = [ 90 sources = [
91 "../lib/main/webview_entry_point.cc", 91 "../lib/webview_entry_point.cc",
92 ] 92 ]
93 ldflags = [ "-Wl,-shared,-Bsymbolic" ] 93 ldflags = [ "-Wl,-shared,-Bsymbolic" ]
94 deps = [ 94 deps = [
95 "//android_webview:common", 95 "//android_webview:common",
96 ] 96 ]
97 configs -= [ "//build/config/android:hide_all_but_jni_onload" ] 97 configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
98 configs += [ "//build/config/android:hide_all_but_jni" ] 98 configs += [ "//build/config/android:hide_all_but_jni" ]
99 } 99 }
100 100
101 instrumentation_test_apk("webview_instrumentation_test_apk") { 101 instrumentation_test_apk("webview_instrumentation_test_apk") {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "../browser/browser_view_renderer_unittest.cc", 251 "../browser/browser_view_renderer_unittest.cc",
252 "../browser/command_line_helper_unittest.cc", 252 "../browser/command_line_helper_unittest.cc",
253 "../browser/net/android_stream_reader_url_request_job_unittest.cc", 253 "../browser/net/android_stream_reader_url_request_job_unittest.cc",
254 "../browser/net/aw_cookie_store_wrapper_unittest.cc", 254 "../browser/net/aw_cookie_store_wrapper_unittest.cc",
255 "../browser/net/input_stream_reader_unittest.cc", 255 "../browser/net/input_stream_reader_unittest.cc",
256 "../browser/renderer_host/auto_login_parser_unittest.cc", 256 "../browser/renderer_host/auto_login_parser_unittest.cc",
257 "../browser/test/fake_window.cc", 257 "../browser/test/fake_window.cc",
258 "../browser/test/fake_window.h", 258 "../browser/test/fake_window.h",
259 "../browser/test/rendering_test.cc", 259 "../browser/test/rendering_test.cc",
260 "../browser/test/rendering_test.h", 260 "../browser/test/rendering_test.h",
261 "../lib/main/webview_tests.cc", 261 "../lib/webview_tests.cc",
262 ] 262 ]
263 263
264 # TODO(ctzsm): Remove following block. 264 # TODO(ctzsm): Remove following block.
265 # Take out old native/ tests files from sources for now 265 # Take out old native/ tests files from sources for now
266 # for easier distinguishing them from actual browser/ files. 266 # for easier distinguishing them from actual browser/ files.
267 sources += [ 267 sources += [
268 "../browser/address_parser_unittest.cc", 268 "../browser/address_parser_unittest.cc",
269 "../browser/aw_contents_client_bridge_unittest.cc", 269 "../browser/aw_contents_client_bridge_unittest.cc",
270 "../browser/aw_media_url_interceptor_unittest.cc", 270 "../browser/aw_media_url_interceptor_unittest.cc",
271 "../browser/input_stream_unittest.cc", 271 "../browser/input_stream_unittest.cc",
(...skipping 29 matching lines...) Expand all
301 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli entBridge.java", 301 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli entBridge.java",
302 ] 302 ]
303 } 303 }
304 304
305 shared_library("libdrawgl") { 305 shared_library("libdrawgl") {
306 sources = [ 306 sources = [
307 "shell/src/draw_gl/draw_gl.cc", 307 "shell/src/draw_gl/draw_gl.cc",
308 ] 308 ]
309 configs -= [ "//build/config/android:hide_all_but_jni_onload" ] 309 configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
310 } 310 }
OLDNEW
« no previous file with comments | « android_webview/lib/webview_tests.cc ('k') | chrome/browser/android/monochrome_entry_point.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698