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

Unified Diff: third_party/mojo/src/mojo/public/mojo.gni

Issue 1390063006: Remove //build/module_args/mojo.gni. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_dart_module_args
Patch Set: fix a few relative imports Created 5 years, 2 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
Index: third_party/mojo/src/mojo/public/mojo.gni
diff --git a/third_party/mojo/src/mojo/public/mojo.gni b/third_party/mojo/src/mojo/public/mojo.gni
deleted file mode 100644
index adf8e0d80607bda921f609d0a3e4a4fd7cd9ac71..0000000000000000000000000000000000000000
--- a/third_party/mojo/src/mojo/public/mojo.gni
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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("//build/module_args/mojo.gni")
-
-# If using the prebuilt shell, gate its usage by the platforms for which it is
-# published.
-mojo_use_prebuilt_mojo_shell = false
-if (!defined(mojo_build_mojo_shell_from_source) ||
- !mojo_build_mojo_shell_from_source) {
- mojo_use_prebuilt_mojo_shell = is_linux || is_android
-}
-
-# If using the prebuilt dart_snapshotter, gate its usage by the platforms for
-# which it is published.
-mojo_use_prebuilt_dart_snapshotter = false
-if (!defined(mojo_build_dart_snapshotter_from_source) ||
- !mojo_build_dart_snapshotter_from_source) {
- mojo_use_prebuilt_dart_snapshotter = true
-} else {
- assert(defined(dart_snapshotter_bin))
-}
-
-# If using the prebuilt network service, gate its usage by the platforms for
-# which it is published.
-mojo_use_prebuilt_network_service = false
-if (!defined(mojo_build_network_service_from_source) ||
- !mojo_build_network_service_from_source) {
- mojo_use_prebuilt_network_service = is_linux || is_android
-}
-
-# Enable Dart apptest framework by default.
-mojo_use_dart_apptest_framework = true
-if (defined(mojo_disable_dart_apptest_framework) &&
- mojo_disable_dart_apptest_framework) {
- mojo_use_dart_apptest_framework = false
-}
-
-# Embedder uses Mojo application code.
-mojo_use_application_in_sdk = true
-if (defined(mojo_disable_application_in_sdk) &&
- mojo_disable_application_in_sdk) {
- mojo_use_application_in_sdk = false
-}
-
-# Embedder uses Mojo network interfaces.
-mojo_use_network_in_sdk = true
-if (defined(mojo_disable_network_in_sdk) && mojo_disable_network_in_sdk) {
- mojo_use_network_in_sdk = false
-}
-
-# The absolute path to the directory containing the mojo public SDK (i.e., the
-# directory containing mojo/public). The build files within the Mojo public
-# SDK use this variable to allow themselves to be parameterized by the location
-# of the public SDK within a client repo.
-mojo_root = get_path_info("../..", "abspath")
« no previous file with comments | « third_party/mojo/src/mojo/public/java/BUILD.gn ('k') | third_party/mojo/src/mojo/public/mojo_application.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698