OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'conditions': [ | 60 'conditions': [ |
61 ['disable_nacl!=1', { | 61 ['disable_nacl!=1', { |
62 'targets': [ | 62 'targets': [ |
63 { | 63 { |
64 'target_name': 'nacl', | 64 'target_name': 'nacl', |
65 'type': 'static_library', | 65 'type': 'static_library', |
66 'variables': { | 66 'variables': { |
67 'nacl_target': 1, | 67 'nacl_target': 1, |
68 }, | 68 }, |
69 'dependencies': [ | 69 'dependencies': [ |
70 'chrome_resources.gyp:chrome_resources', | 70 '../ipc/ipc.gyp:ipc', |
71 'chrome_resources.gyp:chrome_strings', | |
72 'common', | |
73 '../ppapi/native_client/native_client.gyp:nacl_irt', | 71 '../ppapi/native_client/native_client.gyp:nacl_irt', |
74 '../webkit/support/webkit_support.gyp:glue', | 72 '../webkit/support/webkit_support.gyp:glue', |
75 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl
uginChrome', | 73 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl
uginChrome', |
76 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se
l', | 74 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se
l', |
77 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:
platform_qual_lib', | 75 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:
platform_qual_lib', |
78 ], | 76 ], |
79 'direct_dependent_settings': { | 77 'direct_dependent_settings': { |
80 'defines': [ | 78 'defines': [ |
81 'NACL_BLOCK_SHIFT=5', | 79 'NACL_BLOCK_SHIFT=5', |
82 'NACL_BLOCK_SIZE=32', | 80 'NACL_BLOCK_SIZE=32', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'target_name': 'nacl_helper', | 130 'target_name': 'nacl_helper', |
133 'type': 'executable', | 131 'type': 'executable', |
134 'include_dirs': [ | 132 'include_dirs': [ |
135 '..', | 133 '..', |
136 ], | 134 ], |
137 'dependencies': [ | 135 'dependencies': [ |
138 'nacl', | 136 'nacl', |
139 ], | 137 ], |
140 'sources': [ | 138 'sources': [ |
141 'nacl/nacl_helper_linux.cc', | 139 'nacl/nacl_helper_linux.cc', |
| 140 '../chrome/common/nacl_messages.cc', |
| 141 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', |
| 142 '../content/common/unix_domain_socket_posix.cc', |
142 ], | 143 ], |
143 'conditions': [ | 144 'conditions': [ |
144 ['toolkit_uses_gtk == 1', { | 145 ['toolkit_uses_gtk == 1', { |
145 'dependencies': [ | 146 'dependencies': [ |
146 '../build/linux/system.gyp:gtk', | 147 '../build/linux/system.gyp:gtk', |
147 ], | 148 ], |
148 }], | 149 }], |
149 ['use_glib == 1', { | 150 ['use_glib == 1', { |
150 'dependencies': [ | 151 'dependencies': [ |
151 '../build/linux/system.gyp:glib', | 152 '../build/linux/system.gyp:glib', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 'target_name': 'nacl_win64', | 185 'target_name': 'nacl_win64', |
185 'type': 'none', | 186 'type': 'none', |
186 'sources': [], | 187 'sources': [], |
187 }, | 188 }, |
188 ], | 189 ], |
189 }], | 190 }], |
190 ], | 191 ], |
191 }], | 192 }], |
192 ], | 193 ], |
193 } | 194 } |
OLD | NEW |