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

Unified Diff: mojo/system.gni

Issue 554363005: GN: Replace mojo/system.gni with forwarding groups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/services/window_manager/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system.gni
diff --git a/mojo/system.gni b/mojo/system.gni
deleted file mode 100644
index 02264432d71bd2062c71852b89acdc7ee7e12ef6..0000000000000000000000000000000000000000
--- a/mojo/system.gni
+++ /dev/null
@@ -1,28 +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.
-
-# The following mojo_system-prefixed variables are used to express a dependency
-# on the mojo system APIs.
-#
-# In an is_component_build build, everything can link against
-# mojo_system_impl because it is built as a shared library. However, in a static
-# build, mojo_system_impl is linked into an executable (e.g.,
-# mojo_shell), and must be injected into other shared libraries (i.e., Mojo
-# Apps) that need the mojo system API.
-#
-# For component targets, add mojo_system_for_component to your deps section.
-# For shared_library targets (e.g., a Mojo App), add
-# mojo_system_for_shared_library to your deps
-
-if (is_component_build) {
- mojo_system_for_component = [ "//mojo/system" ]
- mojo_system_for_shared_library = [ "//mojo/system" ]
- mojo_gles2_for_component = [ "//mojo/gles2" ]
- mojo_gles2_for_shared_library = [ "//mojo/gles2" ]
-} else {
- mojo_system_for_component = [] # nothing to link against here
- mojo_system_for_shared_library = [ "//mojo/public/c/system" ]
- mojo_gles2_for_component = []
- mojo_gles2_for_shared_library = [ "//mojo/public/gles2" ]
-}
« no previous file with comments | « mojo/services/window_manager/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698