| OLD | NEW |
| (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 mojo_gles2_for_component = [ "//mojo/gles2" ] | |
| 22 mojo_gles2_for_shared_library = [ "//mojo/gles2" ] | |
| 23 } else { | |
| 24 mojo_system_for_component = [] # nothing to link against here | |
| 25 mojo_system_for_shared_library = [ "//mojo/public/c/system" ] | |
| 26 mojo_gles2_for_component = [] | |
| 27 mojo_gles2_for_shared_library = [ "//mojo/public/gles2" ] | |
| 28 } | |
| OLD | NEW |