Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # | 5 # |
| 6 # A set of GYP variables that are shared between mojo.gyp and mojo_base.gyp | 6 # A set of GYP variables that are shared between mojo.gyp and mojo_base.gyp |
|
viettrungluu
2014/09/09 22:02:48
nit: Probably update this to "... between various
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
| 7 # | 7 # |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| 11 'mojo_shell_debug_url%': "", | 11 'mojo_shell_debug_url%': "", |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 # | 13 # |
| 14 # The following mojo_system-prefixed variables are used to express a | 14 # The following mojo_system-prefixed variables are used to express a |
| 15 # dependency on the mojo system APIs. | 15 # dependency on the mojo system APIs. |
| 16 # | 16 # |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 34 ['component=="shared_library"', { | 34 ['component=="shared_library"', { |
| 35 'mojo_system_for_component': "mojo_base.gyp:mojo_system_impl", | 35 'mojo_system_for_component': "mojo_base.gyp:mojo_system_impl", |
| 36 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system_impl", | 36 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system_impl", |
| 37 'mojo_gles2_for_component': "mojo_base.gyp:mojo_gles2_impl", | 37 'mojo_gles2_for_component': "mojo_base.gyp:mojo_gles2_impl", |
| 38 }, { | 38 }, { |
| 39 'mojo_system_for_component': "mojo_base.gyp:mojo_none", | 39 'mojo_system_for_component': "mojo_base.gyp:mojo_none", |
| 40 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system", | 40 'mojo_system_for_loadable_module': "mojo_base.gyp:mojo_system", |
| 41 'mojo_gles2_for_component': "mojo_base.gyp:mojo_none", | 41 'mojo_gles2_for_component': "mojo_base.gyp:mojo_none", |
| 42 }], | 42 }], |
| 43 ], | 43 ], |
| 44 'mojo_public_system_unittest_sources': [ | |
| 45 'public/c/system/tests/core_unittest.cc', | |
|
Mark Seaborn
2014/09/09 19:13:10
Nit: indent by 2 from the parent level, not 4
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
| 46 'public/c/system/tests/core_unittest_pure_c.c', | |
| 47 'public/c/system/tests/macros_unittest.cc', | |
| 48 'public/cpp/system/tests/core_unittest.cc', | |
| 49 'public/cpp/system/tests/macros_unittest.cc', | |
| 50 ], | |
| 44 }, | 51 }, |
| 45 } | 52 } |
| OLD | NEW |