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

Side by Side Diff: build/nacl_core_sdk.gyp

Issue 11415038: Copy crti.o and crtn.o to newlib toolchains in nacl_core_sdk target. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | 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 Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client 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 'common.gypi', 7 'common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 11 matching lines...) Expand all
22 # these libraries don't currently exist on arm 22 # these libraries don't currently exist on arm
23 ['target_arch!="arm"', { 23 ['target_arch!="arm"', {
24 'dependencies': [ 24 'dependencies': [
25 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', 25 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib',
26 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', 26 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib',
27 ], 27 ],
28 'copies': [ 28 'copies': [
29 { 29 {
30 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32', 30 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32',
31 'files': [ 31 'files': [
32 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o',
33 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o',
32 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnacl_dyncode.a', 34 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnacl_dyncode.a',
33 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnosys.a', 35 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnosys.a',
34 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libpthread.a', 36 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libpthread.a',
35 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libvalgrind.a', 37 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libvalgrind.a',
36 ], 38 ],
37 }, 39 },
38 { 40 {
39 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib', 41 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib',
40 'files': [ 42 'files': [
43 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/crti.o',
44 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/crtn.o',
41 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libnacl_dyncode.a', 45 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libnacl_dyncode.a',
42 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libnosys.a', 46 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libnosys.a',
43 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libpthread.a', 47 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libpthread.a',
44 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libvalgrind.a', 48 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libvalgrind.a',
45 ], 49 ],
46 }, 50 },
47 { 51 {
48 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _glibc/x86_64-nacl/lib32', 52 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _glibc/x86_64-nacl/lib32',
49 'files': [ 53 'files': [
50 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libnacl_dyncode.a', 54 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libnacl_dyncode.a',
51 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libvalgrind.a', 55 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libvalgrind.a',
52 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libdynamic_annotation s.a', 56 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libdynamic_annotation s.a',
53 ], 57 ],
54 }, 58 },
55 { 59 {
56 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _glibc/x86_64-nacl/lib', 60 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _glibc/x86_64-nacl/lib',
57 'files': [ 61 'files': [
58 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libnacl_dyncode.a', 62 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libnacl_dyncode.a',
59 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libvalgrind.a', 63 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libvalgrind.a',
60 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a', 64 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a',
61 ], 65 ],
62 }, 66 },
63 ], 67 ],
64 }], 68 }],
65 ], 69 ],
66 }, 70 },
67 ], 71 ],
68 } 72 }
69 73
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698