Fix spelling and remove bogus formatting from README.chromium
[chromium-blink-merge.git] / mojo / mojo_nacl_untrusted.gyp
blob0cb4948d1d5a27e9d4222110ab0a370b71d997bd
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.
6   'conditions': [
7     ['disable_nacl==0 and disable_nacl_untrusted==0', {
8       'variables': {
9         'monacl_codegen_dir': '<(SHARED_INTERMEDIATE_DIR)/<!(python <(DEPTH)/build/inverse_depth.py <(DEPTH))/monacl',
10       },
11       'includes': [
12         'mojo_variables.gypi',
13         '../build/common_untrusted.gypi',
14         '../components/nacl/nacl_defines.gypi',
15       ],
16       'targets': [
17         {
18           'target_name': 'libmojo',
19           'type': 'none',
20           'variables': {
21             'nlib_target': 'libmojo.a',
22             'build_glibc': 0,
23             'build_newlib': 0,
24             'build_pnacl_newlib': 1,
25           },
26           'defines': [
27             '<@(nacl_defines)',
28           ],
29           'sources': [
30             '<(monacl_codegen_dir)/libmojo.cc',
31           ],
32           'dependencies': [
33             'mojo_nacl.gyp:monacl_codegen',
34             'mojo_public.gyp:mojo_system_placeholder',
35           ],
36         },
37         {
38           'target_name': 'monacl_test',
39           'type': 'none',
40           'variables': {
41             'nexe_target': 'monacl_test',
42             'build_newlib': 0,
43             'build_pnacl_newlib': 1,
44             'translate_pexe_with_build': 1,
45             'link_flags': [
46               '-pthread',
47               '-lmojo',
48               '-limc_syscalls',
49             ],
50             'sources': [
51               '<@(mojo_public_system_unittest_sources)',
52             ],
53           },
54           'dependencies': [
55             '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
56             '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib',
57             '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
58             '<(DEPTH)/native_client/src/untrusted/pthread/pthread.gyp:pthread_lib',
59             '../testing/gtest_nacl.gyp:gtest_nacl',
60             '../testing/gtest_nacl.gyp:gtest_main_nacl',
61             'libmojo',
62             'mojo_nacl.gyp:monacl_codegen',
63           ],
64         },
65       ],
66     }],
67   ],