| 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 # re: untrusted.gypi -- Though this doesn't really use build_nexe.py or | 6 # re: untrusted.gypi -- Though this doesn't really use build_nexe.py or |
| 7 # anything, it depends on untrusted nexes from the toolchain and for the shim. | 7 # anything, it depends on untrusted nexes from the toolchain and for the shim. |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../../../../build/common_untrusted.gypi', | 9 '../../../../../build/common_untrusted.gypi', |
| 10 ], | 10 ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'pnacl_support_extension', | 13 'target_name': 'pnacl_support_extension', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'variables': { | 15 'variables': { |
| 16 'pnacl_translator_dir%': "<(DEPTH)/native_client/toolchain/<(TOOLCHAIN_OS)
_x86/pnacl_translator", | 16 'pnacl_translator_dir%': "<(DEPTH)/native_client/toolchain/<(TOOLCHAIN_OS)
_x86/pnacl_translator", |
| 17 'pnacl_translator_stamp%': "pnacl_translator.json", | 17 'pnacl_translator_stamp%': "pnacl_translator.json", |
| 18 }, | 18 }, |
| 19 'conditions': [ | 19 'conditions': [ |
| 20 ['disable_nacl==0 and disable_pnacl==0 and disable_nacl_untrusted==0', { | 20 ['disable_nacl==0 and disable_pnacl==0 and disable_nacl_untrusted==0', { |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '../../../../../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl
_irt_shim.gyp:browser', | 22 '../../../../../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl
_irt_shim.gyp:browser', |
| 23 '../../../../../native_client/tools.gyp:prep_toolchain', | |
| 24 ], | 23 ], |
| 25 'sources': [ | 24 'sources': [ |
| 26 'pnacl_component_crx_gen.py', | 25 'pnacl_component_crx_gen.py', |
| 27 ], | 26 ], |
| 28 # We could use 'copies', but we want to rename the files | 27 # We could use 'copies', but we want to rename the files |
| 29 # in a white-listed way first. Thus use a script. | 28 # in a white-listed way first. Thus use a script. |
| 30 'actions': [ | 29 'actions': [ |
| 31 { | 30 { |
| 32 'action_name': 'generate_pnacl_support_extension', | 31 'action_name': 'generate_pnacl_support_extension', |
| 33 'inputs': [ | 32 'inputs': [ |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 '--pnacl_package_name=pnacl_newlib', | 163 '--pnacl_package_name=pnacl_newlib', |
| 165 # ABI Version Number. | 164 # ABI Version Number. |
| 166 '1', | 165 '1', |
| 167 ], | 166 ], |
| 168 }, | 167 }, |
| 169 ], | 168 ], |
| 170 }], | 169 }], |
| 171 ], | 170 ], |
| 172 }], | 171 }], |
| 173 } | 172 } |
| OLD | NEW |