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

Side by Side Diff: chrome/nacl.gypi

Issue 8893009: Move content::MakeSharedMemorySegmentViaIPC into its own file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: back to like patch set 3 Created 9 years 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'include': [ 6 'include': [
7 '../native_client/build/untrusted.gypi', 7 '../native_client/build/untrusted.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'conditions': [ 60 'conditions': [
61 ['disable_nacl!=1', { 61 ['disable_nacl!=1', {
62 'targets': [ 62 'targets': [
63 { 63 {
64 'target_name': 'nacl', 64 'target_name': 'nacl',
65 'type': 'static_library', 65 'type': 'static_library',
66 'variables': { 66 'variables': {
67 'nacl_target': 1, 67 'nacl_target': 1,
68 }, 68 },
69 'dependencies': [ 69 'dependencies': [
70 'chrome_resources.gyp:chrome_resources', 70 '../ipc/ipc.gyp:ipc',
71 'chrome_resources.gyp:chrome_strings',
72 'common',
73 '../webkit/support/webkit_support.gyp:glue',
74 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl uginChrome', 71 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPl uginChrome',
75 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l', 72 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l',
76 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp: platform_qual_lib', 73 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp: platform_qual_lib',
77 ], 74 ],
78 'conditions': [ 75 'conditions': [
79 ['disable_nacl_untrusted==0', { 76 ['disable_nacl_untrusted==0', {
80 'dependencies': [ 77 'dependencies': [
81 '../ppapi/native_client/native_client.gyp:nacl_irt', 78 '../ppapi/native_client/native_client.gyp:nacl_irt',
82 ], 79 ],
83 }], 80 }],
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'target_name': 'nacl_helper', 135 'target_name': 'nacl_helper',
139 'type': 'executable', 136 'type': 'executable',
140 'include_dirs': [ 137 'include_dirs': [
141 '..', 138 '..',
142 ], 139 ],
143 'dependencies': [ 140 'dependencies': [
144 'nacl', 141 'nacl',
145 ], 142 ],
146 'sources': [ 143 'sources': [
147 'nacl/nacl_helper_linux.cc', 144 'nacl/nacl_helper_linux.cc',
145 '../chrome/common/nacl_messages.cc',
146 '../content/common/child_process_sandbox_support_impl_shm_linux. cc',
jam 2011/12/15 01:08:31 nit: ". cc"
147 '../content/common/unix_domain_socket_posix.cc',
148 ], 148 ],
149 'conditions': [ 149 'conditions': [
150 ['toolkit_uses_gtk == 1', { 150 ['toolkit_uses_gtk == 1', {
151 'dependencies': [ 151 'dependencies': [
152 '../build/linux/system.gyp:gtk', 152 '../build/linux/system.gyp:gtk',
153 ], 153 ],
154 }], 154 }],
155 ['use_glib == 1', { 155 ['use_glib == 1', {
156 'dependencies': [ 156 'dependencies': [
157 '../build/linux/system.gyp:glib', 157 '../build/linux/system.gyp:glib',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'target_name': 'nacl_win64', 190 'target_name': 'nacl_win64',
191 'type': 'none', 191 'type': 'none',
192 'sources': [], 192 'sources': [],
193 }, 193 },
194 ], 194 ],
195 }], 195 }],
196 ], 196 ],
197 }], 197 }],
198 ], 198 ],
199 } 199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698