| 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("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 | 893 |
| 894 deps += [ | 894 deps += [ |
| 895 "//services/shell/background:lib", | 895 "//services/shell/background:lib", |
| 896 "//services/shell/background/tests:test_support", | 896 "//services/shell/background/tests:test_support", |
| 897 ] | 897 ] |
| 898 | 898 |
| 899 data_deps = [ | 899 data_deps = [ |
| 900 "//chrome/app:mojo_manifests", | 900 "//chrome/app:mojo_manifests", |
| 901 "//mash/session", | 901 "//mash/session", |
| 902 ] | 902 ] |
| 903 | |
| 904 defines = [ "MOJO_SHELL_CLIENT" ] | |
| 905 } | 903 } |
| 906 } | 904 } |
| 907 | 905 |
| 908 test("browser_tests") { | 906 test("browser_tests") { |
| 909 sources = rebase_path(chrome_tests_gypi_values.chrome_browser_tests_sources, | 907 sources = rebase_path(chrome_tests_gypi_values.chrome_browser_tests_sources, |
| 910 ".", | 908 ".", |
| 911 "//chrome") | 909 "//chrome") |
| 912 | 910 |
| 913 configs += [ | 911 configs += [ |
| 914 "//build/config:precompiled_headers", | 912 "//build/config:precompiled_headers", |
| (...skipping 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2499 if (is_android) { | 2497 if (is_android) { |
| 2500 android_library("unit_tests_java") { | 2498 android_library("unit_tests_java") { |
| 2501 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2499 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2502 deps = [ | 2500 deps = [ |
| 2503 "//base:base_java", | 2501 "//base:base_java", |
| 2504 "//chrome/android:chrome_java", | 2502 "//chrome/android:chrome_java", |
| 2505 "//content/public/android:content_java", | 2503 "//content/public/android:content_java", |
| 2506 ] | 2504 ] |
| 2507 } | 2505 } |
| 2508 } | 2506 } |
| OLD | NEW |