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

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: gyp, extern, formatting 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'name_service/default_name_service.c', 55 'name_service/default_name_service.c',
56 'name_service/name_service.c', 56 'name_service/name_service.c',
57 'sel_addrspace.c', 57 'sel_addrspace.c',
58 'sel_ldr.c', 58 'sel_ldr.c',
59 'sel_ldr_standard.c', 59 'sel_ldr_standard.c',
60 'sel_ldr_thread_interface.c', 60 'sel_ldr_thread_interface.c',
61 'sel_main_chrome.c', 61 'sel_main_chrome.c',
62 'sel_mem.c', 62 'sel_mem.c',
63 'sel_qualify.c', 63 'sel_qualify.c',
64 'sel_validate_image.c', 64 'sel_validate_image.c',
65 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c',
65 ], 66 ],
66 'include_dirs': [ 67 'include_dirs': [
67 # For generated header files from the x86-64 validator, 68 # For generated header files from the x86-64 validator,
68 # e.g. nacl_disallows.h. 69 # e.g. nacl_disallows.h.
69 '<(SHARED_INTERMEDIATE_DIR)', 70 '<(SHARED_INTERMEDIATE_DIR)',
70 ], 71 ],
71 'sources!': [ 72 'sources!': [
72 '<(syscall_handler)', 73 '<(syscall_handler)',
73 ], 74 ],
74 'actions': [ 75 'actions': [
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 '<(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',
410 ], 411 ],
411 'sources': [ 412 'sources': [
412 'sel_main_chrome_test.c', 413 'sel_main_chrome_test.c',
413 ], 414 ],
414 }, 415 },
415 ], 416 ],
416 }], 417 }],
417 ] 418 ]
418 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698