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

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

Issue 10134056: Refactor the process of choosing validators. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: upload error retry Created 8 years, 7 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 # -*- gyp -*- 1 # -*- gyp -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 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 'variables': { 7 'variables': {
8 'conditions': [ 8 'conditions': [
9 ['OS=="linux"', { 9 ['OS=="linux"', {
10 'syscall_handler': [ 10 'syscall_handler': [
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }], 198 }],
199 ], 199 ],
200 }, 200 },
201 'targets': [ 201 'targets': [
202 { 202 {
203 'target_name': 'sel', 203 'target_name': 'sel',
204 'type': 'static_library', 204 'type': 'static_library',
205 'variables': { 205 'variables': {
206 'target_base': 'sel', 206 'target_base': 'sel',
207 }, 207 },
208 'sources': [
209 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c',
210 ],
208 'dependencies': [ 211 'dependencies': [
209 'env_cleanser', 212 'env_cleanser',
210 'nacl_error_code', 213 'nacl_error_code',
211 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', 214 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
212 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', 215 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
213 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', 216 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
214 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ', 217 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ',
215 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', 218 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
216 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject', 219 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject',
217 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp', 220 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', 410 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64',
408 ], 411 ],
409 'sources': [ 412 'sources': [
410 'sel_main_chrome_test.c', 413 'sel_main_chrome_test.c',
411 ], 414 ],
412 }, 415 },
413 ], 416 ],
414 }], 417 }],
415 ] 418 ]
416 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698