| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 | 342 |
| 343 android_library("content_browsertests_java") { | 343 android_library("content_browsertests_java") { |
| 344 testonly = true | 344 testonly = true |
| 345 java_files = [ | 345 java_files = [ |
| 346 "../shell/android/browsertests_apk/src/org/chromium/content_browsertests_a
pk/ContentBrowserTestsActivity.java", | 346 "../shell/android/browsertests_apk/src/org/chromium/content_browsertests_a
pk/ContentBrowserTestsActivity.java", |
| 347 "../shell/android/browsertests_apk/src/org/chromium/content_browsertests_a
pk/ContentBrowserTestsApplication.java", | 347 "../shell/android/browsertests_apk/src/org/chromium/content_browsertests_a
pk/ContentBrowserTestsApplication.java", |
| 348 ] | 348 ] |
| 349 deps = [ | 349 deps = [ |
| 350 ":content_browsertests_resources", | 350 ":content_browsertests_resources", |
| 351 "//base:base_java", | 351 "//base:base_java", |
| 352 "//base:base_java_test_support", |
| 352 "//content/public/android:content_java", | 353 "//content/public/android:content_java", |
| 353 "//content/public/test/android:content_java_test_support", | 354 "//content/public/test/android:content_java_test_support", |
| 354 "//content/shell/android:content_shell_browsertests_java", | 355 "//content/shell/android:content_shell_browsertests_java", |
| 355 "//testing/android/native_test:native_test_java", | 356 "//testing/android/native_test:native_test_java", |
| 356 "//ui/android:ui_java", | 357 "//ui/android:ui_java", |
| 357 ] | 358 ] |
| 358 } | 359 } |
| 359 | 360 |
| 360 android_resources("content_browsertests_resources") { | 361 android_resources("content_browsertests_resources") { |
| 361 testonly = true | 362 testonly = true |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 908 |
| 908 fuzzer_test("renderer_fuzzer") { | 909 fuzzer_test("renderer_fuzzer") { |
| 909 sources = [ | 910 sources = [ |
| 910 "renderer_fuzzer.cc", | 911 "renderer_fuzzer.cc", |
| 911 ] | 912 ] |
| 912 deps = [ | 913 deps = [ |
| 913 ":test_support", | 914 ":test_support", |
| 914 "//content/shell:content_shell_lib", | 915 "//content/shell:content_shell_lib", |
| 915 ] | 916 ] |
| 916 } | 917 } |
| OLD | NEW |