OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'nacl/nacl_defines.gypi', | 10 'nacl/nacl_defines.gypi', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 'msvs_disabled_warnings': [4267, ], | 139 'msvs_disabled_warnings': [4267, ], |
140 }, | 140 }, |
141 { | 141 { |
142 'target_name': 'nacl_renderer', | 142 'target_name': 'nacl_renderer', |
143 'type': 'static_library', | 143 'type': 'static_library', |
144 'sources': [ | 144 'sources': [ |
145 'nacl/renderer/pnacl_translation_resource_host.cc', | 145 'nacl/renderer/pnacl_translation_resource_host.cc', |
146 'nacl/renderer/pnacl_translation_resource_host.h', | 146 'nacl/renderer/pnacl_translation_resource_host.h', |
147 'nacl/renderer/ppb_nacl_private_impl.cc', | 147 'nacl/renderer/ppb_nacl_private_impl.cc', |
148 'nacl/renderer/ppb_nacl_private_impl.h', | 148 'nacl/renderer/ppb_nacl_private_impl.h', |
149 'nacl/renderer/sandbox_isa.cc', | |
Mark Seaborn
2014/03/12 18:24:14
How about calling these "sandbox_arch.{cc,h}"? "a
| |
150 'nacl/renderer/sandbox_isa.h', | |
149 'nacl/renderer/trusted_plugin_channel.cc', | 151 'nacl/renderer/trusted_plugin_channel.cc', |
150 'nacl/renderer/trusted_plugin_channel.h', | 152 'nacl/renderer/trusted_plugin_channel.h', |
151 ], | 153 ], |
152 'include_dirs': [ | 154 'include_dirs': [ |
153 '..', | 155 '..', |
154 ], | 156 ], |
155 'dependencies': [ | 157 'dependencies': [ |
156 '../content/content.gyp:content_renderer', | 158 '../content/content.gyp:content_renderer', |
157 '../third_party/WebKit/public/blink.gyp:blink', | 159 '../third_party/WebKit/public/blink.gyp:blink', |
158 '../webkit/common/webkit_common.gyp:webkit_common', | 160 '../webkit/common/webkit_common.gyp:webkit_common', |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
395 'nacl/common/nacl_types.h', | 397 'nacl/common/nacl_types.h', |
396 'nacl/common/pnacl_types.cc', | 398 'nacl/common/pnacl_types.cc', |
397 'nacl/common/pnacl_types.h', | 399 'nacl/common/pnacl_types.h', |
398 ], | 400 ], |
399 'include_dirs': [ | 401 'include_dirs': [ |
400 '..', | 402 '..', |
401 ], | 403 ], |
402 }, | 404 }, |
403 ] | 405 ] |
404 } | 406 } |
OLD | NEW |