Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: components/nacl.gyp

Issue 131413009: Prototype: Use Chromium IPC for plugin LOAD_MODULE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased, some FIXMEs cleaned up Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 18 matching lines...) Expand all
29 # Test files are also not included. 29 # Test files are also not included.
30 'nacl/loader/nacl_ipc_adapter.cc', 30 'nacl/loader/nacl_ipc_adapter.cc',
31 'nacl/loader/nacl_ipc_adapter.h', 31 'nacl/loader/nacl_ipc_adapter.h',
32 'nacl/loader/nacl_main.cc', 32 'nacl/loader/nacl_main.cc',
33 'nacl/loader/nacl_main_platform_delegate.h', 33 'nacl/loader/nacl_main_platform_delegate.h',
34 'nacl/loader/nacl_main_platform_delegate_linux.cc', 34 'nacl/loader/nacl_main_platform_delegate_linux.cc',
35 'nacl/loader/nacl_main_platform_delegate_mac.mm', 35 'nacl/loader/nacl_main_platform_delegate_mac.mm',
36 'nacl/loader/nacl_main_platform_delegate_win.cc', 36 'nacl/loader/nacl_main_platform_delegate_win.cc',
37 'nacl/loader/nacl_listener.cc', 37 'nacl/loader/nacl_listener.cc',
38 'nacl/loader/nacl_listener.h', 38 'nacl/loader/nacl_listener.h',
39 'nacl/loader/nacl_trusted_listener.cc',
40 'nacl/loader/nacl_trusted_listener.h',
39 'nacl/loader/nacl_validation_db.h', 41 'nacl/loader/nacl_validation_db.h',
40 'nacl/loader/nacl_validation_query.cc', 42 'nacl/loader/nacl_validation_query.cc',
41 'nacl/loader/nacl_validation_query.h', 43 'nacl/loader/nacl_validation_query.h',
42 ], 44 ],
43 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines 45 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines
44 'conditions': [ 46 'conditions': [
45 ['OS=="win"', { 47 ['OS=="win"', {
46 'defines': [ 48 'defines': [
47 '__STDC_LIMIT_MACROS=1', 49 '__STDC_LIMIT_MACROS=1',
48 ], 50 ],
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'msvs_disabled_warnings': [4267, ], 140 'msvs_disabled_warnings': [4267, ],
139 }, 141 },
140 { 142 {
141 'target_name': 'nacl_renderer', 143 'target_name': 'nacl_renderer',
142 'type': 'static_library', 144 'type': 'static_library',
143 'sources': [ 145 'sources': [
144 'nacl/renderer/pnacl_translation_resource_host.cc', 146 'nacl/renderer/pnacl_translation_resource_host.cc',
145 'nacl/renderer/pnacl_translation_resource_host.h', 147 'nacl/renderer/pnacl_translation_resource_host.h',
146 'nacl/renderer/ppb_nacl_private_impl.cc', 148 'nacl/renderer/ppb_nacl_private_impl.cc',
147 'nacl/renderer/ppb_nacl_private_impl.h', 149 'nacl/renderer/ppb_nacl_private_impl.h',
150 'nacl/renderer/trusted_plugin_channel.cc',
151 'nacl/renderer/trusted_plugin_channel.h',
148 ], 152 ],
149 'include_dirs': [ 153 'include_dirs': [
150 '..', 154 '..',
151 ], 155 ],
152 'dependencies': [ 156 'dependencies': [
153 '../content/content.gyp:content_renderer', 157 '../content/content.gyp:content_renderer',
154 '../third_party/WebKit/public/blink.gyp:blink', 158 '../third_party/WebKit/public/blink.gyp:blink',
155 '../webkit/common/webkit_common.gyp:webkit_common', 159 '../webkit/common/webkit_common.gyp:webkit_common',
156 ], 160 ],
157 'defines': [ 161 'defines': [
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'nacl/common/nacl_types.h', 390 'nacl/common/nacl_types.h',
387 'nacl/common/pnacl_types.cc', 391 'nacl/common/pnacl_types.cc',
388 'nacl/common/pnacl_types.h', 392 'nacl/common/pnacl_types.h',
389 ], 393 ],
390 'include_dirs': [ 394 'include_dirs': [
391 '..', 395 '..',
392 ], 396 ],
393 }, 397 },
394 ] 398 ]
395 } 399 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/browser/nacl_process_host.h » ('j') | components/nacl/browser/nacl_process_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698