| OLD | NEW |
| (Empty) |
| 1 # -*- python -*- | |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 { | |
| 7 'variables': { | |
| 8 'chromium_code': 1, # Use higher warning level. | |
| 9 }, | |
| 10 'targets': [ | |
| 11 { | |
| 12 'target_name': 'nacl_trusted_plugin', | |
| 13 'type': 'static_library', | |
| 14 'sources': [ | |
| 15 'module_ppapi.cc', | |
| 16 'nacl_subprocess.cc', | |
| 17 'plugin.cc', | |
| 18 'pnacl_coordinator.cc', | |
| 19 'pnacl_resources.cc', | |
| 20 'pnacl_translate_thread.cc', | |
| 21 'ppapi_entrypoints.cc', | |
| 22 'service_runtime.cc', | |
| 23 ], | |
| 24 'dependencies': [ | |
| 25 '<(DEPTH)/media/media.gyp:shared_memory_support', | |
| 26 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp_objects', | |
| 27 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_internal_module', | |
| 28 ], | |
| 29 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
| 30 'msvs_disabled_warnings': [4267, ], | |
| 31 }, | |
| 32 ], | |
| 33 } | |
| OLD | NEW |