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

Side by Side Diff: mojo/system.gni

Issue 461903002: GN: Add mojo_shell_tests, get more things working on android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix up android linking Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/shell/BUILD.gn ('k') | third_party/libxslt/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # The following mojo_system-prefixed variables are used to express a dependency
6 # on the mojo system APIs.
7 #
8 # In an is_component_build build, everything can link against
9 # mojo_system_impl because it is built as a shared library. However, in a static
10 # build, mojo_system_impl is linked into an executable (e.g.,
11 # mojo_shell), and must be injected into other shared libraries (i.e., Mojo
12 # Apps) that need the mojo system API.
13 #
14 # For component targets, add mojo_system_for_component to your deps section.
15 # For shared_library targets (e.g., a Mojo App), add
16 # mojo_system_for_shared_library to your deps
17
18 if (is_component_build) {
19 mojo_system_for_component = [ "//mojo/system" ]
20 mojo_system_for_shared_library = [ "//mojo/system" ]
21 } else {
22 mojo_system_for_component = [] # nothing to link against here
23 mojo_system_for_shared_library = [ "//mojo/public/c/system" ]
24 }
OLDNEW
« no previous file with comments | « mojo/shell/BUILD.gn ('k') | third_party/libxslt/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698