| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "../browser/command_line_helper_unittest.cc", | 250 "../browser/command_line_helper_unittest.cc", |
| 251 "../browser/net/android_stream_reader_url_request_job_unittest.cc", | 251 "../browser/net/android_stream_reader_url_request_job_unittest.cc", |
| 252 "../browser/net/aw_cookie_store_wrapper_unittest.cc", | 252 "../browser/net/aw_cookie_store_wrapper_unittest.cc", |
| 253 "../browser/net/input_stream_reader_unittest.cc", | 253 "../browser/net/input_stream_reader_unittest.cc", |
| 254 "../browser/renderer_host/auto_login_parser_unittest.cc", | 254 "../browser/renderer_host/auto_login_parser_unittest.cc", |
| 255 "../browser/test/fake_window.cc", | 255 "../browser/test/fake_window.cc", |
| 256 "../browser/test/fake_window.h", | 256 "../browser/test/fake_window.h", |
| 257 "../browser/test/rendering_test.cc", | 257 "../browser/test/rendering_test.cc", |
| 258 "../browser/test/rendering_test.h", | 258 "../browser/test/rendering_test.h", |
| 259 "../lib/main/webview_tests.cc", | 259 "../lib/main/webview_tests.cc", |
| 260 "../native/address_parser_unittest.cc", |
| 260 "../native/aw_contents_client_bridge_unittest.cc", | 261 "../native/aw_contents_client_bridge_unittest.cc", |
| 261 "../native/aw_media_url_interceptor_unittest.cc", | 262 "../native/aw_media_url_interceptor_unittest.cc", |
| 262 "../native/input_stream_unittest.cc", | 263 "../native/input_stream_unittest.cc", |
| 263 "../native/permission/media_access_permission_request_unittest.cc", | 264 "../native/permission/media_access_permission_request_unittest.cc", |
| 264 "../native/permission/permission_request_handler_unittest.cc", | 265 "../native/permission/permission_request_handler_unittest.cc", |
| 265 "../native/state_serializer_unittest.cc", | 266 "../native/state_serializer_unittest.cc", |
| 266 ] | 267 ] |
| 267 } | 268 } |
| 268 | 269 |
| 269 android_assets("android_webview_unittests_assets") { | 270 android_assets("android_webview_unittests_assets") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 292 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli
entBridge.java", | 293 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli
entBridge.java", |
| 293 ] | 294 ] |
| 294 } | 295 } |
| 295 | 296 |
| 296 shared_library("libdrawgl") { | 297 shared_library("libdrawgl") { |
| 297 sources = [ | 298 sources = [ |
| 298 "shell/src/draw_gl/draw_gl.cc", | 299 "shell/src/draw_gl/draw_gl.cc", |
| 299 ] | 300 ] |
| 300 configs -= [ "//build/config/android:hide_all_but_jni_onload" ] | 301 configs -= [ "//build/config/android:hide_all_but_jni_onload" ] |
| 301 } | 302 } |
| OLD | NEW |