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

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: more aesthetics 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ', 228 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ',
229 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', 229 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
230 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject', 230 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject',
231 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp', 231 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp',
232 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc', 232 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
233 '<(DEPTH)/native_client/src/trusted/interval_multiset/interval_multiset. gyp:nacl_interval', 233 '<(DEPTH)/native_client/src/trusted/interval_multiset/interval_multiset. gyp:nacl_interval',
234 '<(DEPTH)/native_client/src/trusted/perf_counter/perf_counter.gyp:nacl_p erf_counter', 234 '<(DEPTH)/native_client/src/trusted/perf_counter/perf_counter.gyp:nacl_p erf_counter',
235 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/manifest _name_service_proxy.gyp:manifest_proxy', 235 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/manifest _name_service_proxy.gyp:manifest_proxy',
236 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si mple_service', 236 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si mple_service',
237 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter face', 237 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter face',
238 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validators',
238 ], 239 ],
239 'conditions': [ 240 'conditions': [
240 ['target_arch=="arm"', { 241 ['target_arch=="arm"', {
241 'dependencies': [ 242 'dependencies': [
242 '<(DEPTH)/native_client/src/trusted/validator_arm/validator_arm.gyp: ncvalidate_arm_v2', 243 '<(DEPTH)/native_client/src/trusted/validator_arm/validator_arm.gyp: ncvalidate_arm_v2',
243 ], 244 ],
244 }], 245 }],
245 ['target_arch=="ia32" or target_arch=="x64"', { 246 ['target_arch=="ia32" or target_arch=="x64"', {
246 'dependencies': [ 247 'dependencies': [
247 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common', 248 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', 335 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64',
335 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection. gyp:nacl_fault_inject64', 336 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection. gyp:nacl_fault_inject64',
336 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp64', 337 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp64',
337 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wra pped_desc64', 338 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wra pped_desc64',
338 '<(DEPTH)/native_client/src/trusted/interval_multiset/interval_multi set.gyp:nacl_interval64', 339 '<(DEPTH)/native_client/src/trusted/interval_multiset/interval_multi set.gyp:nacl_interval64',
339 '<(DEPTH)/native_client/src/trusted/perf_counter/perf_counter.gyp:na cl_perf_counter64', 340 '<(DEPTH)/native_client/src/trusted/perf_counter/perf_counter.gyp:na cl_perf_counter64',
340 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/mani fest_name_service_proxy.gyp:manifest_proxy64', 341 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/mani fest_name_service_proxy.gyp:manifest_proxy64',
341 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gy p:simple_service64', 342 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gy p:simple_service64',
342 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64', 343 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64',
343 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64', 344 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64',
345 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validato rs64',
344 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common64', 346 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common64',
345 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64', 347 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64',
346 ], 348 ],
347 }, { 349 }, {
348 'target_name': 'container64', 350 'target_name': 'container64',
349 'type': 'static_library', 351 'type': 'static_library',
350 'variables': { 352 'variables': {
351 'win_target': 'x64', 353 'win_target': 'x64',
352 }, 354 },
353 'sources': [ 355 'sources': [
(...skipping 50 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', 406 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64',
405 ], 407 ],
406 'sources': [ 408 'sources': [
407 'sel_main_chrome_test.c', 409 'sel_main_chrome_test.c',
408 ], 410 ],
409 }, 411 },
410 ], 412 ],
411 }], 413 }],
412 ] 414 ]
413 } 415 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/sel_validate_image.c ('k') | src/trusted/service_runtime/testdata/dfa_validator_hello.stderr » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698