| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 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 | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 'plugin.gypi', | 8 'plugin.gypi', |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'nacl_trusted_plugin', | 12 'target_name': 'nacl_trusted_plugin', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'sources': [ | 14 'sources': [ |
| 15 '<@(common_sources)', | 15 '<@(common_sources)', |
| 16 ], | 16 ], |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 '<(DEPTH)/media/media.gyp:shared_memory_support', | 18 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| 19 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | |
| 20 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', | |
| 21 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 19 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 22 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | 20 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', |
| 23 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy
p:platform_qual_lib', | |
| 24 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si
mple_service', | |
| 25 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp_objects', | 21 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 26 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_internal_module', | 22 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_internal_module', |
| 27 ], | 23 ], |
| 28 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 24 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 29 'msvs_disabled_warnings': [4267, ], | 25 'msvs_disabled_warnings': [4267, ], |
| 30 }, | 26 }, |
| 31 ], | 27 ], |
| 32 } | 28 } |
| OLD | NEW |