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 '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 24 matching lines...) Expand all Loading... | |
35 'sources': [ | 35 'sources': [ |
36 'nacl/loader/nacl_helper_linux.cc', | 36 'nacl/loader/nacl_helper_linux.cc', |
37 'nacl/loader/nacl_helper_linux.h', | 37 'nacl/loader/nacl_helper_linux.h', |
38 ], | 38 ], |
39 | 39 |
40 'conditions': [ | 40 'conditions': [ |
41 ['target_arch=="ia32" or target_arch=="x64"', { | 41 ['target_arch=="ia32" or target_arch=="x64"', { |
42 'extra_deps_newlib32_nonsfi': [ | 42 'extra_deps_newlib32_nonsfi': [ |
43 '>(tc_lib_dir_nonsfi_helper32)/libbase_nacl_nonsfi.a', | 43 '>(tc_lib_dir_nonsfi_helper32)/libbase_nacl_nonsfi.a', |
44 '>(tc_lib_dir_nonsfi_helper32)/libevent_nacl_nonsfi.a', | 44 '>(tc_lib_dir_nonsfi_helper32)/libevent_nacl_nonsfi.a', |
45 '>(tc_lib_dir_nonsfi_helper32)/libshared_memory_support_nacl.a ', | |
45 ], | 46 ], |
46 }], | 47 }], |
47 ], | 48 ], |
48 }, | 49 }, |
49 'dependencies': [ | 50 'dependencies': [ |
50 '../base/base_nacl.gyp:base_nacl_nonsfi', | 51 '../base/base_nacl.gyp:base_nacl_nonsfi', |
51 '../native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private', | 52 '../native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private', |
52 '../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 53 '../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
53 '../native_client/tools.gyp:prep_toolchain', | 54 '../native_client/tools.gyp:prep_toolchain', |
55 | |
56 # Temporarily depends on some libraries to make sure they can be | |
57 # built properly. These are depended by PPAPI library. | |
Mark Seaborn
2014/10/20 19:20:36
nit: "depended on by"
hidehiko
2014/10/21 05:11:34
Done.
| |
58 # TODO(hidehiko): Remove them when PPAPI library is introduced. | |
59 '../media/media_nacl.gyp:shared_memory_support_nacl', | |
54 ], | 60 ], |
55 }, | 61 }, |
56 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests. | 62 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests. |
57 ], | 63 ], |
58 }], | 64 }], |
59 ], | 65 ], |
60 } | 66 } |
OLD | NEW |