| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 ] | 416 ] |
| 417 | 417 |
| 418 if (is_mac) { | 418 if (is_mac) { |
| 419 data += [ "$root_out_dir/Content Shell.app/" ] | 419 data += [ "$root_out_dir/Content Shell.app/" ] |
| 420 } | 420 } |
| 421 | 421 |
| 422 if (is_android) { | 422 if (is_android) { |
| 423 sources += [ "test/android/browsertests_apk/components_browser_tests_jni_o
nload.cc" ] | 423 sources += [ "test/android/browsertests_apk/components_browser_tests_jni_o
nload.cc" ] |
| 424 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] | 424 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] |
| 425 deps += [ | 425 deps += [ |
| 426 "//content/public/test/android:layouttest_java_support", |
| 426 "//content/test:layouttest_support", | 427 "//content/test:layouttest_support", |
| 427 "//testing/android/native_test:native_test_support", | 428 "//testing/android/native_test:native_test_support", |
| 428 ] | 429 ] |
| 429 use_default_launcher = false | 430 use_default_launcher = false |
| 430 isolate_file = "components_browsertests.isolate" | 431 isolate_file = "components_browsertests.isolate" |
| 431 android_manifest = "${target_gen_dir}/components_browsertests_manifest/And
roidManifest.xml" | 432 android_manifest = "${target_gen_dir}/components_browsertests_manifest/And
roidManifest.xml" |
| 432 deps += [ | 433 deps += [ |
| 433 ":components_browsertests_assets", | 434 ":components_browsertests_assets", |
| 434 ":components_browsertests_java", | 435 ":components_browsertests_java", |
| 435 ":components_browsertests_manifest", | 436 ":components_browsertests_manifest", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "//base/test:test_support_perf", | 471 "//base/test:test_support_perf", |
| 471 "//components/scheduler", | 472 "//components/scheduler", |
| 472 "//components/visitedlink/browser", | 473 "//components/visitedlink/browser", |
| 473 "//content/test:test_support", | 474 "//content/test:test_support", |
| 474 "//testing/gtest", | 475 "//testing/gtest", |
| 475 "//testing/perf", | 476 "//testing/perf", |
| 476 "//url", | 477 "//url", |
| 477 ] | 478 ] |
| 478 } | 479 } |
| 479 } | 480 } |
| OLD | NEW |