| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 304 |
| 305 android_library("components_browsertests_java") { | 305 android_library("components_browsertests_java") { |
| 306 testonly = true | 306 testonly = true |
| 307 deps = [ | 307 deps = [ |
| 308 ":components_browsertests_resources", | 308 ":components_browsertests_resources", |
| 309 "//base:base_java", | 309 "//base:base_java", |
| 310 "//content/public/test/android:content_java_test_support", | 310 "//content/public/test/android:content_java_test_support", |
| 311 "//content/shell/android:content_shell_browsertests_java", | 311 "//content/shell/android:content_shell_browsertests_java", |
| 312 "//testing/android/native_test:native_test_java", | 312 "//testing/android/native_test:native_test_java", |
| 313 ] | 313 ] |
| 314 DEPRECATED_java_in_dir = "//components/test/android/browsertests_apk/src" | 314 java_files = [ |
| 315 "test/android/browsertests_apk/src/org/chromium/components_browsertests_ap
k/ComponentsBrowserTestsActivity.java", |
| 316 "test/android/browsertests_apk/src/org/chromium/components_browsertests_ap
k/ComponentsBrowserTestsApplication.java", |
| 317 ] |
| 315 } | 318 } |
| 316 | 319 |
| 317 jinja_template("components_browsertests_manifest") { | 320 jinja_template("components_browsertests_manifest") { |
| 318 testonly = true | 321 testonly = true |
| 319 input = | 322 input = |
| 320 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" | 323 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" |
| 321 output = | 324 output = |
| 322 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" | 325 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" |
| 323 } | 326 } |
| 324 | 327 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 "//base/test:test_support_perf", | 441 "//base/test:test_support_perf", |
| 439 "//components/scheduler", | 442 "//components/scheduler", |
| 440 "//components/visitedlink/browser", | 443 "//components/visitedlink/browser", |
| 441 "//content/test:test_support", | 444 "//content/test:test_support", |
| 442 "//testing/gtest", | 445 "//testing/gtest", |
| 443 "//testing/perf", | 446 "//testing/perf", |
| 444 "//url", | 447 "//url", |
| 445 ] | 448 ] |
| 446 } | 449 } |
| 447 } | 450 } |
| OLD | NEW |