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

Side by Side Diff: src/trusted/plugin/plugin.gyp

Issue 2981011: Move plugin/srpc contents to the more appropriately named plugin/common.... (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: '' Created 10 years, 5 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
« no previous file with comments | « src/trusted/plugin/plugin.cc ('k') | src/trusted/plugin/plugin.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009, Google Inc. 1 # Copyright 2009, Google Inc.
2 # All rights reserved. 2 # All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', 153 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
154 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:no nnacl_util_chrome', 154 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:no nnacl_util_chrome',
155 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:expiration', 155 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:expiration',
156 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:gio_shm', 156 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:gio_shm',
157 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 157 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
158 ], 158 ],
159 'sources': [ 159 'sources': [
160 '<@(common_sources)', 160 '<@(common_sources)',
161 '<@(npapi_sources)', 161 '<@(npapi_sources)',
162 'nacl_entry_points.cc', 162 'nacl_entry_points.cc',
163 'srpc/video_chrome.cc', 163 'npapi/video_chrome.cc',
164 ], 164 ],
165 }, 165 },
166 ], 166 ],
167 }], 167 }],
168 ['nacl_standalone==0 and OS=="win"', { 168 ['nacl_standalone==0 and OS=="win"', {
169 'targets': [ 169 'targets': [
170 { 170 {
171 'target_name': 'npGoogleNaClPluginChrome64', 171 'target_name': 'npGoogleNaClPluginChrome64',
172 'type': 'static_library', 172 'type': 'static_library',
173 'variables': { 173 'variables': {
174 'win_target': 'x64', 174 'win_target': 'x64',
175 }, 175 },
176 'sources': [ 176 'sources': [
177 '<@(common_sources)', 177 '<@(common_sources)',
178 '<@(npapi_sources)', 178 '<@(npapi_sources)',
179 'nacl_entry_points.cc', 179 'nacl_entry_points.cc',
180 'srpc/video_chrome.cc', 180 'npapi/video_chrome.cc',
181 ], 181 ],
182 'dependencies': [ 182 'dependencies': [
183 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', 183 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64',
184 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:google_nacl_imc_c64', 184 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:google_nacl_imc_c64',
185 '<(DEPTH)/native_client/src/shared/npruntime/npruntime.gyp:google_na cl_npruntime64', 185 '<(DEPTH)/native_client/src/shared/npruntime/npruntime.gyp:google_na cl_npruntime64',
186 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' , 186 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' ,
187 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', 187 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64',
188 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:no nnacl_util_chrome64', 188 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:no nnacl_util_chrome64',
189 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:expiration64', 189 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:expiration64',
190 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:gio_shm64', 190 '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime. gyp:gio_shm64',
191 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 191 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
192 ], 192 ],
193 'configurations': { 193 'configurations': {
194 'Common_Base': { 194 'Common_Base': {
195 'msvs_target_platform': 'x64', 195 'msvs_target_platform': 'x64',
196 }, 196 },
197 }, 197 },
198 } 198 }
199 ], 199 ],
200 }], 200 }],
201 ], 201 ],
202 } 202 }
OLDNEW
« no previous file with comments | « src/trusted/plugin/plugin.cc ('k') | src/trusted/plugin/plugin.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698