| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'variables': { | 101 'variables': { |
| 102 'nacl_target': 1, | 102 'nacl_target': 1, |
| 103 }, | 103 }, |
| 104 'dependencies': [ | 104 'dependencies': [ |
| 105 '../native_client/src/trusted/service_runtime/service_runtime.gy
p:sel64', | 105 '../native_client/src/trusted/service_runtime/service_runtime.gy
p:sel64', |
| 106 '../native_client/src/trusted/platform_qualify/platform_qualify.
gyp:platform_qual_lib64', | 106 '../native_client/src/trusted/platform_qualify/platform_qualify.
gyp:platform_qual_lib64', |
| 107 ], | 107 ], |
| 108 'sources': [ | 108 'sources': [ |
| 109 'common/nacl_cmd_line.cc', | 109 'common/nacl_cmd_line.cc', |
| 110 'common/nacl_messages.cc', | 110 'common/nacl_messages.cc', |
| 111 'common/nacl_types.cc', |
| 111 'nacl/nacl_broker_listener.cc', | 112 'nacl/nacl_broker_listener.cc', |
| 112 'nacl/nacl_broker_listener.h', | 113 'nacl/nacl_broker_listener.h', |
| 113 ], | 114 ], |
| 114 'include_dirs': [ | 115 'include_dirs': [ |
| 115 '..', | 116 '..', |
| 116 ], | 117 ], |
| 117 'defines': [ | 118 'defines': [ |
| 118 '<@(nacl_win64_defines)', | 119 '<@(nacl_win64_defines)', |
| 119 'COMPILE_CONTENT_STATICALLY', | 120 'COMPILE_CONTENT_STATICALLY', |
| 120 ], | 121 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 139 'include_dirs': [ | 140 'include_dirs': [ |
| 140 '..', | 141 '..', |
| 141 ], | 142 ], |
| 142 'dependencies': [ | 143 'dependencies': [ |
| 143 '../crypto/crypto.gyp:crypto', | 144 '../crypto/crypto.gyp:crypto', |
| 144 'nacl', | 145 'nacl', |
| 145 ], | 146 ], |
| 146 'sources': [ | 147 'sources': [ |
| 147 'nacl/nacl_helper_linux.cc', | 148 'nacl/nacl_helper_linux.cc', |
| 148 '../chrome/common/nacl_messages.cc', | 149 '../chrome/common/nacl_messages.cc', |
| 150 '../chrome/common/nacl_types.cc', |
| 149 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', | 151 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', |
| 150 '../content/common/unix_domain_socket_posix.cc', | 152 '../content/common/unix_domain_socket_posix.cc', |
| 151 ], | 153 ], |
| 152 'conditions': [ | 154 'conditions': [ |
| 153 ['toolkit_uses_gtk == 1', { | 155 ['toolkit_uses_gtk == 1', { |
| 154 'dependencies': [ | 156 'dependencies': [ |
| 155 '../build/linux/system.gyp:gtk', | 157 '../build/linux/system.gyp:gtk', |
| 156 ], | 158 ], |
| 157 }], | 159 }], |
| 158 ['use_glib == 1', { | 160 ['use_glib == 1', { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 'target_name': 'nacl_win64', | 195 'target_name': 'nacl_win64', |
| 194 'type': 'none', | 196 'type': 'none', |
| 195 'sources': [], | 197 'sources': [], |
| 196 }, | 198 }, |
| 197 ], | 199 ], |
| 198 }], | 200 }], |
| 199 ], | 201 ], |
| 200 }], | 202 }], |
| 201 ], | 203 ], |
| 202 } | 204 } |
| OLD | NEW |