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

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: rebased, added a todo for NaClCopyCode Created 8 years, 6 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'name_service/name_service.c', 58 'name_service/name_service.c',
59 'sel_addrspace.c', 59 'sel_addrspace.c',
60 'sel_ldr.c', 60 'sel_ldr.c',
61 'sel_ldr_standard.c', 61 'sel_ldr_standard.c',
62 'sel_ldr_thread_interface.c', 62 'sel_ldr_thread_interface.c',
63 'sel_main_chrome.c', 63 'sel_main_chrome.c',
64 'sel_mem.c', 64 'sel_mem.c',
65 'sel_qualify.c', 65 'sel_qualify.c',
66 'sel_validate_image.c', 66 'sel_validate_image.c',
67 'thread_suspension_common.c', 67 'thread_suspension_common.c',
68 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c',
Mark Seaborn 2012/06/14 20:11:56 This is messy. service_runtime.gyp shouldn't be b
pasko-google - do not use 2012/06/17 14:46:45 I agree this looks different than inclusion of oth
Mark Seaborn 2012/06/20 20:02:26 Creating a new, arch-neutral Gyp file, src/validat
pasko-google - do not use 2012/06/21 15:24:18 I added the trusted/validator/validator.gyp. Thoug
68 ], 69 ],
69 'include_dirs': [ 70 'include_dirs': [
70 # For generated header files from the x86-64 validator, 71 # For generated header files from the x86-64 validator,
71 # e.g. nacl_disallows.h. 72 # e.g. nacl_disallows.h.
72 '<(SHARED_INTERMEDIATE_DIR)', 73 '<(SHARED_INTERMEDIATE_DIR)',
73 ], 74 ],
74 'sources!': [ 75 'sources!': [
75 '<(syscall_handler)', 76 '<(syscall_handler)',
76 ], 77 ],
77 'actions': [ 78 'actions': [
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', 405 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64',
405 ], 406 ],
406 'sources': [ 407 'sources': [
407 'sel_main_chrome_test.c', 408 'sel_main_chrome_test.c',
408 ], 409 ],
409 }, 410 },
410 ], 411 ],
411 }], 412 }],
412 ] 413 ]
413 } 414 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698