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 23 matching lines...) Expand all Loading... |
34 | 34 |
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)/libcommand_buffer_client_nacl.a
', |
| 45 '>(tc_lib_dir_nonsfi_helper32)/libcommand_buffer_common_nacl.a
', |
44 '>(tc_lib_dir_nonsfi_helper32)/libevent_nacl_nonsfi.a', | 46 '>(tc_lib_dir_nonsfi_helper32)/libevent_nacl_nonsfi.a', |
| 47 '>(tc_lib_dir_nonsfi_helper32)/libgles2_cmd_helper_nacl.a', |
| 48 '>(tc_lib_dir_nonsfi_helper32)/libgles2_implementation_nacl.a'
, |
| 49 '>(tc_lib_dir_nonsfi_helper32)/libgles2_utils_nacl.a', |
| 50 '>(tc_lib_dir_nonsfi_helper32)/libgpu_ipc_nacl.a', |
45 '>(tc_lib_dir_nonsfi_helper32)/libshared_memory_support_nacl.a
', | 51 '>(tc_lib_dir_nonsfi_helper32)/libshared_memory_support_nacl.a
', |
46 ], | 52 ], |
47 }], | 53 }], |
48 ], | 54 ], |
49 }, | 55 }, |
50 'dependencies': [ | 56 'dependencies': [ |
51 '../base/base_nacl.gyp:base_nacl_nonsfi', | 57 '../base/base_nacl.gyp:base_nacl_nonsfi', |
52 '../native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private', | 58 '../native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private', |
53 '../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 59 '../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
54 '../native_client/tools.gyp:prep_toolchain', | 60 '../native_client/tools.gyp:prep_toolchain', |
55 | 61 |
56 # Temporarily depends on some libraries to make sure they can be | 62 # Temporarily depends on some libraries to make sure they can be |
57 # built properly. These are depended on by PPAPI library. | 63 # built properly. These are depended on by PPAPI library. |
58 # TODO(hidehiko): Remove them when PPAPI library is introduced. | 64 # TODO(hidehiko): Remove them when PPAPI library is introduced. |
| 65 '../gpu/command_buffer/command_buffer_nacl.gyp:gles2_utils_nacl', |
| 66 '../gpu/gpu_nacl.gyp:command_buffer_client_nacl', |
| 67 '../gpu/gpu_nacl.gyp:command_buffer_common_nacl', |
| 68 '../gpu/gpu_nacl.gyp:gles2_cmd_helper_nacl', |
| 69 '../gpu/gpu_nacl.gyp:gles2_implementation_nacl', |
| 70 '../gpu/gpu_nacl.gyp:gpu_ipc_nacl', |
59 '../media/media_nacl.gyp:shared_memory_support_nacl', | 71 '../media/media_nacl.gyp:shared_memory_support_nacl', |
60 ], | 72 ], |
61 }, | 73 }, |
62 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests. | 74 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests. |
63 ], | 75 ], |
64 }], | 76 }], |
65 ], | 77 ], |
66 } | 78 } |
OLD | NEW |