| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client 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 # Build the specific library dependencies for validating on x86-64 | 5 # Build the specific library dependencies for validating on x86-64 |
| 6 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 '../../../../../build/common.gypi', | 8 '../../../../../build/common.gypi', |
| 9 ], | 9 ], |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'conditions': [ | 60 'conditions': [ |
| 61 ['OS=="win" or target_arch=="x64"', { | 61 ['OS=="win" or target_arch=="x64"', { |
| 62 'targets': [ | 62 'targets': [ |
| 63 # ---------------------------------------------------------------------- | 63 # ---------------------------------------------------------------------- |
| 64 { | 64 { |
| 65 'target_name': 'ncvalidate_x86_64', | 65 'target_name': 'ncvalidate_x86_64', |
| 66 'type': 'static_library', | 66 'type': 'static_library', |
| 67 'variables': { | 67 'variables': { |
| 68 'target_base': 'ncvalidate_x86_64', | 68 'target_base': 'ncvalidate_x86_64', |
| 69 }, | 69 }, |
| 70 'sources': [ |
| 71 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c', |
| 72 ], |
| 70 'dependencies': [ | 73 'dependencies': [ |
| 71 '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncva
l_reg_sfi.gyp:ncval_reg_sfi_x86_64' | 74 '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncva
l_reg_sfi.gyp:ncval_reg_sfi_x86_64' |
| 72 ], | 75 ], |
| 73 'hard_dependency': 1, | 76 'hard_dependency': 1, |
| 74 }, | 77 }, |
| 75 { | 78 { |
| 76 'target_name': 'ncvalidate_verbose_x86_64', | 79 'target_name': 'ncvalidate_verbose_x86_64', |
| 77 'type': 'static_library', | 80 'type': 'static_library', |
| 78 'variables': { | 81 'variables': { |
| 79 'target_base': 'ncvalidate_verbose_x86_64', | 82 'target_base': 'ncvalidate_verbose_x86_64', |
| 80 }, | 83 }, |
| 81 'dependencies': [ | 84 'dependencies': [ |
| 82 'ncvalidate_x86_64', | 85 'ncvalidate_x86_64', |
| 83 '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncva
l_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64' | 86 '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncva
l_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64' |
| 84 ], | 87 ], |
| 85 'hard_dependency': 1, | 88 'hard_dependency': 1, |
| 86 }, | 89 }, |
| 87 ], | 90 ], |
| 88 }], | 91 }], |
| 89 [ 'target_arch=="arm" or target_arch=="ia32"', { | 92 [ 'target_arch=="arm" or target_arch=="ia32"', { |
| 90 'targets': [] | 93 'targets': [] |
| 91 }], | 94 }], |
| 92 ], | 95 ], |
| 93 } | 96 } |
| 94 | 97 |
| OLD | NEW |