Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1048)

Unified Diff: mojo/shell/BUILD.gn

Issue 1706833003: Move various Shell tests into a subdir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@conn
Patch Set: . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/mojo_shell.gyp ('k') | mojo/shell/application_manager_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/BUILD.gn
diff --git a/mojo/shell/BUILD.gn b/mojo/shell/BUILD.gn
index 4782614130b3802b214c5689dcf466f3b7fc9519..739c133235850636f78fdda04482a561c5ff3327 100644
--- a/mojo/shell/BUILD.gn
+++ b/mojo/shell/BUILD.gn
@@ -2,8 +2,6 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//mojo/public/mojo_application.gni")
-import("//mojo/public/mojo_application_manifest.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//testing/test.gni")
@@ -66,173 +64,3 @@ source_set("shell") {
# For mojo/shell/application_loader.h
allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ]
}
-
-source_set("test_support") {
- testonly = true
- sources = [
- "capability_filter_test.cc",
- "capability_filter_test.h",
- ]
-
- deps = [
- ":shell",
- ":test_bindings",
- "//mojo/shell/public/cpp",
- "//mojo/shell/public/interfaces",
- "//testing/gtest",
- ]
-}
-
-# TODO(beng): this target should just be called "unittests" but I am having
-# difficulty with the android _apk generator.
-test("mojo_shell_unittests") {
- sources = [
- "application_manager_unittest.cc",
- "capability_filter_unittest.cc",
- ]
-
- deps = [
- ":shell",
- ":test_bindings",
- ":test_support",
- "//base",
- "//mojo/edk/system:test_utils",
- "//mojo/edk/test:run_all_unittests",
- "//mojo/public/cpp/system",
- "//mojo/shell/public/cpp",
- "//mojo/util:filename_util",
- "//testing/gtest",
- "//url",
- ]
-}
-
-mojom("test_bindings") {
- sources = [
- "application_manager_apptests.mojom",
- "capability_filter_unittest.mojom",
- "package_test.mojom",
- "test.mojom",
- ]
-}
-
-mojo_native_application("apptests") {
- output_name = "mojo_shell_apptests"
- testonly = true
-
- sources = [
- "application_manager_apptest.cc",
- "package_apptest.cc",
- ]
-
- deps = [
- ":apptests_manifest",
- ":test_bindings",
- "//base",
- "//base/test:test_config",
- "//mojo/common:common_base",
- "//mojo/converters/network",
- "//mojo/shell/public/cpp:sources",
- "//mojo/shell/public/cpp:test_support",
- "//mojo/shell/public/interfaces",
- ]
-
- data_deps = [
- ":application_manager_apptest_driver",
- ":application_manager_apptest_target",
- ":package_test_package",
- ]
-}
-
-mojo_application_manifest("apptests_manifest") {
- application_name = "mojo_shell_apptests"
- source = "application_manager_apptest_manifest.json"
-}
-
-mojo_application_manifest("package_test_a_manifest") {
- application_name = "package_test_a"
- source = "package_test_app_a_manifest.json"
-}
-
-mojo_application_manifest("package_test_b_manifest") {
- application_name = "package_test_b"
- source = "package_test_app_b_manifest.json"
-}
-
-mojo_native_application("package_test_package") {
- testonly = true
- sources = [
- "package_test_package.cc",
- ]
- deps = [
- ":package_test_package_manifest",
- ":test_bindings",
- "//base",
- "//mojo/common:common_base",
- "//mojo/shell/public/cpp:sources",
- "//mojo/shell/public/interfaces",
- ]
-}
-
-mojo_application_manifest("package_test_package_manifest") {
- application_name = "package_test_package"
- source = "package_test_package_manifest.json"
- deps = [
- ":package_test_a_manifest",
- ":package_test_b_manifest",
- ]
- packaged_applications = [
- "package_test_a",
- "package_test_b",
- ]
-}
-
-executable("application_manager_apptest_driver") {
- testonly = true
-
- sources = [
- "application_manager_apptest_driver.cc",
- ]
-
- deps = [
- ":copy_application_manager_apptest_driver_manifest",
- ":test_bindings",
- "//base",
- "//base:base_static",
- "//build/config/sanitizers:deps",
- "//mojo/common:common_base",
- "//mojo/converters/network",
- "//mojo/edk/system",
- "//mojo/shell/public/cpp",
- "//mojo/shell/public/interfaces",
- "//mojo/shell/runner:init",
- "//mojo/shell/runner/child:test_native_main",
- "//mojo/shell/runner/common",
- ]
-}
-
-copy("copy_application_manager_apptest_driver_manifest") {
- sources = [
- "application_manager_apptest_driver_manifest.json",
- ]
- outputs = [
- "${root_out_dir}/{{source_file_part}}",
- ]
-}
-
-executable("application_manager_apptest_target") {
- testonly = true
-
- sources = [
- "application_manager_apptest_target.cc",
- ]
-
- deps = [
- ":test_bindings",
- "//base",
- "//build/config/sanitizers:deps",
- "//mojo/common:common_base",
- "//mojo/converters/network",
- "//mojo/shell/public/cpp",
- "//mojo/shell/runner/child:test_native_main",
- ]
-}
« no previous file with comments | « mojo/mojo_shell.gyp ('k') | mojo/shell/application_manager_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698