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

Side by Side Diff: src/untrusted/irt/irt.gyp

Issue 984713003: Add an IRT interface for subzero/compiler to serve_translate_requests. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: c void Created 5 years, 9 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
« no previous file with comments | « src/untrusted/irt/BUILD.gn ('k') | src/untrusted/irt/irt_dev.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'irt_sources': [ 10 'irt_sources': [
(...skipping 16 matching lines...) Expand all
27 'irt_mutex.c', 27 'irt_mutex.c',
28 'irt_cond.c', 28 'irt_cond.c',
29 'irt_sem.c', 29 'irt_sem.c',
30 'irt_tls.c', 30 'irt_tls.c',
31 'irt_blockhook.c', 31 'irt_blockhook.c',
32 'irt_clock.c', 32 'irt_clock.c',
33 'irt_dev_getpid.c', 33 'irt_dev_getpid.c',
34 'irt_exception_handling.c', 34 'irt_exception_handling.c',
35 'irt_dev_list_mappings.c', 35 'irt_dev_list_mappings.c',
36 'irt_random.c', 36 'irt_random.c',
37 'irt_pnacl_translator.c', 37 'irt_pnacl_translator_compile.c',
38 'irt_pnacl_translator_link.c',
38 # support_srcs 39 # support_srcs
39 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via 40 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via
40 # #includes of .c files. 41 # #includes of .c files.
41 '../pthread/nc_mutex.c', 42 '../pthread/nc_mutex.c',
42 '../pthread/nc_condvar.c', 43 '../pthread/nc_condvar.c',
43 '../nacl/sys_private.c', 44 '../nacl/sys_private.c',
44 '../valgrind/dynamic_annotations.c', 45 '../valgrind/dynamic_annotations.c',
45 ], 46 ],
46 'irt_nonbrowser': [ 47 'irt_nonbrowser': [
47 'irt_core_resource.c', 48 'irt_core_resource.c',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'build_irt': 1, 91 'build_irt': 1,
91 }, 92 },
92 'sources': ['<@(irt_sources)'], 93 'sources': ['<@(irt_sources)'],
93 'dependencies': [ 94 'dependencies': [
94 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 95 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
95 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', 96 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib',
96 ], 97 ],
97 }, 98 },
98 ], 99 ],
99 } 100 }
OLDNEW
« no previous file with comments | « src/untrusted/irt/BUILD.gn ('k') | src/untrusted/irt/irt_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698