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

Unified Diff: mojo/shell/application_manager/BUILD.gn

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 9 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/shell/app_child_process_host_unittest.cc ('k') | mojo/shell/application_manager/application_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/application_manager/BUILD.gn
diff --git a/mojo/shell/application_manager/BUILD.gn b/mojo/shell/application_manager/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f220b4349f52583754b596db6b061b38e560165c
--- /dev/null
+++ b/mojo/shell/application_manager/BUILD.gn
@@ -0,0 +1,75 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
+import("//testing/test.gni")
+
+source_set("application_manager") {
+ output_name = "mojo_application_manager"
+ sources = [
+ "application_loader.h",
+ "application_manager.cc",
+ "application_manager.h",
+ "data_pipe_peek.cc",
+ "data_pipe_peek.h",
+ "fetcher.cc",
+ "fetcher.h",
+ "identity.cc",
+ "identity.h",
+ "local_fetcher.cc",
+ "local_fetcher.h",
+ "native_runner.h",
+ "network_fetcher.cc",
+ "network_fetcher.h",
+ "query_util.cc",
+ "query_util.h",
+ "shell_impl.cc",
+ "shell_impl.h",
+ ]
+
+ public_deps = [
+ "//base",
+ "//mojo/common",
+ "//third_party/mojo/src/mojo/public/interfaces/application:application",
+ "//mojo/services/network/public/interfaces",
+ "//url",
+ ]
+ deps = [
+ "//base/third_party/dynamic_annotations",
+ "//crypto:crypto",
+ "//url",
+ "//third_party/mojo/src/mojo/edk/system",
+ "//mojo/environment:chromium",
+ "//third_party/mojo_services/src/content_handler/public/interfaces",
+ "//mojo/shell:native_application_support",
+ "//mojo/shell:switches",
+ ]
+}
+
+test("mojo_application_manager_unittests") {
+ sources = [
+ "application_manager_unittest.cc",
+ "query_util_unittest.cc",
+ ]
+
+ deps = [
+ ":application_manager",
+ ":test_bindings",
+ "//base",
+ "//mojo/application",
+ "//mojo/common",
+ "//third_party/mojo/src/mojo/edk/test:run_all_unittests",
+ "//mojo/environment:chromium",
+ "//third_party/mojo/src/mojo/public/cpp/application",
+ "//third_party/mojo/src/mojo/public/cpp/bindings",
+ "//testing/gtest",
+ "//url",
+ ]
+}
+
+mojom("test_bindings") {
+ sources = [
+ "test.mojom",
+ ]
+}
« no previous file with comments | « mojo/shell/app_child_process_host_unittest.cc ('k') | mojo/shell/application_manager/application_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698