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

Side by Side Diff: build/nacl_core_sdk.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Created 7 years, 3 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
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 {
11 'target_name': 'nacl_core_sdk', 11 'target_name': 'nacl_core_sdk',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen erator_lib', 14 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen erator_lib',
15 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', 15 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib',
16 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib', 16 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib',
17 '../src/untrusted/nacl/nacl.gyp:nacl_lib', 17 '../src/untrusted/nacl/nacl.gyp:nacl_lib',
18 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib', 18 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib',
19 '../src/untrusted/nosys/nosys.gyp:nosys_lib', 19 '../src/untrusted/nosys/nosys.gyp:nosys_lib',
20 '../src/untrusted/pthread/pthread.gyp:pthread_lib', 20 '../src/untrusted/pthread/pthread.gyp:pthread_lib',
21 ], 21 ],
22 'conditions': [ 22 'conditions': [
23 ['target_arch!="arm"', { 23 ['target_arch!="arm" and target_arch!="mipsel"', {
24 'dependencies': [ 24 'dependencies': [
25 # sel_ldr and irt are host-only and not needed when building the 25 # sel_ldr and irt are host-only and not needed when building the
26 # arm components of the SDK. 26 # arm and mips components of the SDK.
27 '../src/untrusted/irt/irt.gyp:irt_core_nexe', 27 '../src/untrusted/irt/irt.gyp:irt_core_nexe',
28 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr', 28 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr',
29 # these libraries don't currently exist on arm 29 # these libraries don't currently exist on arm and mips
30 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', 30 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib',
31 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', 31 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib',
32 ], 32 ],
33 'copies': [ 33 'copies': [
34 { 34 {
35 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32', 35 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32',
36 'files': [ 36 'files': [
37 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o', 37 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o',
38 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o', 38 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o',
39 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnacl_dyncode.a', 39 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libnacl_dyncode.a',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a', 73 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a',
74 ], 74 ],
75 }, 75 },
76 ], 76 ],
77 }], 77 }],
78 ], 78 ],
79 }, 79 },
80 ], 80 ],
81 } 81 }
82 82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698