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/platform/platform.gyp:platform', | |
20 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | |
21 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp_objects', | 19 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp_objects', |
22 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_internal_module', | 20 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_internal_module', |
23 ], | 21 ], |
24 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 22 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
25 'msvs_disabled_warnings': [4267, ], | 23 'msvs_disabled_warnings': [4267, ], |
26 }, | 24 }, |
27 ], | 25 ], |
28 } | 26 } |
OLD | NEW |