OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'include': [ | 6 'include': [ |
7 '../native_client/build/untrusted.gypi', | 7 '../native_client/build/untrusted.gypi', |
8 ], | 8 ], |
9 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 { | 66 { |
67 'target_name': 'nacl', | 67 'target_name': 'nacl', |
68 'type': 'static_library', | 68 'type': 'static_library', |
69 'variables': { | 69 'variables': { |
70 'nacl_target': 1, | 70 'nacl_target': 1, |
71 }, | 71 }, |
72 'dependencies': [ | 72 'dependencies': [ |
73 '../base/base.gyp:base', | 73 '../base/base.gyp:base', |
74 '../ipc/ipc.gyp:ipc', | 74 '../ipc/ipc.gyp:ipc', |
75 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl
uginChrome', | 75 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl
uginChrome', |
| 76 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 77 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
76 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se
l', | 78 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se
l', |
77 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:
platform_qual_lib', | 79 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:
platform_qual_lib', |
78 ], | 80 ], |
79 'conditions': [ | 81 'conditions': [ |
80 ['disable_nacl_untrusted==0', { | 82 ['disable_nacl_untrusted==0', { |
81 'dependencies': [ | 83 'dependencies': [ |
82 '../ppapi/native_client/native_client.gyp:nacl_irt', | 84 '../ppapi/native_client/native_client.gyp:nacl_irt', |
83 ], | 85 ], |
84 }], | 86 }], |
85 ['disable_nacl_untrusted==0 and target_arch!="arm"', { | 87 ['disable_nacl_untrusted==0 and target_arch!="arm"', { |
(...skipping 14 matching lines...) Expand all Loading... |
100 'targets': [ | 102 'targets': [ |
101 { | 103 { |
102 'target_name': 'nacl_win64', | 104 'target_name': 'nacl_win64', |
103 'type': 'static_library', | 105 'type': 'static_library', |
104 'variables': { | 106 'variables': { |
105 'nacl_target': 1, | 107 'nacl_target': 1, |
106 }, | 108 }, |
107 'dependencies': [ | 109 'dependencies': [ |
108 '../native_client/src/trusted/service_runtime/service_runtime.gy
p:sel64', | 110 '../native_client/src/trusted/service_runtime/service_runtime.gy
p:sel64', |
109 '../native_client/src/trusted/platform_qualify/platform_qualify.
gyp:platform_qual_lib64', | 111 '../native_client/src/trusted/platform_qualify/platform_qualify.
gyp:platform_qual_lib64', |
| 112 '../ppapi/ppapi_internal.gyp:ppapi_shared_win64', |
| 113 '../ppapi/ppapi_internal.gyp:ppapi_proxy_win64', |
110 ], | 114 ], |
111 'sources': [ | 115 'sources': [ |
112 'common/nacl_cmd_line.cc', | 116 'common/nacl_cmd_line.cc', |
113 'common/nacl_debug_exception_handler_win.cc', | 117 'common/nacl_debug_exception_handler_win.cc', |
114 'common/nacl_messages.cc', | 118 'common/nacl_messages.cc', |
115 'common/nacl_types.cc', | 119 'common/nacl_types.cc', |
116 'nacl/nacl_broker_listener.cc', | 120 'nacl/nacl_broker_listener.cc', |
117 'nacl/nacl_broker_listener.h', | 121 'nacl/nacl_broker_listener.h', |
118 ], | 122 ], |
119 'include_dirs': [ | 123 'include_dirs': [ |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'target_name': 'nacl_win64', | 204 'target_name': 'nacl_win64', |
201 'type': 'none', | 205 'type': 'none', |
202 'sources': [], | 206 'sources': [], |
203 }, | 207 }, |
204 ], | 208 ], |
205 }], | 209 }], |
206 ], | 210 ], |
207 }], | 211 }], |
208 ], | 212 ], |
209 } | 213 } |
OLD | NEW |