OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
(...skipping 13 matching lines...) Expand all Loading... |
24 'nlib_target': 'libmojo_system_impl_nacl.a', | 24 'nlib_target': 'libmojo_system_impl_nacl.a', |
25 'build_glibc': 0, | 25 'build_glibc': 0, |
26 'build_newlib': 0, | 26 'build_newlib': 0, |
27 'build_irt': 1, | 27 'build_irt': 1, |
28 'build_pnacl_newlib': 0, | 28 'build_pnacl_newlib': 0, |
29 'build_nonsfi_helper': 1, | 29 'build_nonsfi_helper': 1, |
30 }, | 30 }, |
31 'dependencies': [ | 31 'dependencies': [ |
32 '../base/base_nacl.gyp:base_nacl', | 32 '../base/base_nacl.gyp:base_nacl', |
33 '../base/base_nacl.gyp:base_nacl_nonsfi', | 33 '../base/base_nacl.gyp:base_nacl_nonsfi', |
34 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | |
35 'mojo_public.gyp:mojo_public_system', | 34 'mojo_public.gyp:mojo_public_system', |
36 ], | 35 ], |
37 'defines': [ | 36 'defines': [ |
38 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', | 37 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', |
39 ], | 38 ], |
40 'sources': [ | 39 'sources': [ |
41 'edk/embedder/configuration.h', | 40 'edk/embedder/configuration.h', |
42 'edk/embedder/embedder.cc', | 41 'edk/embedder/embedder.cc', |
43 'edk/embedder/embedder.h', | 42 'edk/embedder/embedder.h', |
44 'edk/embedder/embedder_internal.h', | 43 'edk/embedder/embedder_internal.h', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 # Test-only code: | 121 # Test-only code: |
123 # TODO(vtl): It's a little unfortunate that these end up in the same | 122 # TODO(vtl): It's a little unfortunate that these end up in the same |
124 # component as non-test-only code. In the static build, this code | 123 # component as non-test-only code. In the static build, this code |
125 # should hopefully be dead-stripped. | 124 # should hopefully be dead-stripped. |
126 'edk/embedder/test_embedder.cc', | 125 'edk/embedder/test_embedder.cc', |
127 'edk/embedder/test_embedder.h', | 126 'edk/embedder/test_embedder.h', |
128 ], | 127 ], |
129 }, | 128 }, |
130 ], | 129 ], |
131 } | 130 } |
OLD | NEW |