| 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 # This GYP file defines untrusted (NaCl) targets. All targets in this | 5 # This GYP file defines untrusted (NaCl) targets. All targets in this |
| 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid | 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid |
| 7 # requiring NaCl sources for building. | 7 # requiring NaCl sources for building. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 '-pthread', | 186 '-pthread', |
| 187 '-lbase_untrusted', | 187 '-lbase_untrusted', |
| 188 ], | 188 ], |
| 189 }, | 189 }, |
| 190 }, | 190 }, |
| 191 { | 191 { |
| 192 'target_name': 'ipc_untrusted', | 192 'target_name': 'ipc_untrusted', |
| 193 'type': 'none', | 193 'type': 'none', |
| 194 'dependencies': [ | 194 'dependencies': [ |
| 195 'base_untrusted', | 195 'base_untrusted', |
| 196 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
| 196 ], | 197 ], |
| 197 'variables': { | 198 'variables': { |
| 198 'nlib_target': 'libipc_untrusted.a', | 199 'nlib_target': 'libipc_untrusted.a', |
| 199 'build_glibc': 0, | 200 'build_glibc': 0, |
| 200 'build_newlib': 1, | 201 'build_newlib': 1, |
| 201 'include_dirs': [ | 202 'include_dirs': [ |
| 202 '..', | 203 '..', |
| 203 ], | 204 ], |
| 204 'sources': [ | 205 'sources': [ |
| 205 '../ipc/file_descriptor_set_posix.cc', | 206 '../ipc/file_descriptor_set_posix.cc', |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 # '-lppruntime', | 407 # '-lppruntime', |
| 407 '-pthread', | 408 '-pthread', |
| 408 '-lgpu_untrusted', | 409 '-lgpu_untrusted', |
| 409 '-lipc_untrusted', | 410 '-lipc_untrusted', |
| 410 '-lbase_untrusted', | 411 '-lbase_untrusted', |
| 411 ], | 412 ], |
| 412 }, | 413 }, |
| 413 }, | 414 }, |
| 414 ], | 415 ], |
| 415 } | 416 } |
| OLD | NEW |