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

Side by Side Diff: build/nacl_core_sdk.gyp

Issue 10915109: Add nacl_sdk gyp meta-target. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: . Created 8 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 | Annotate | Revision Log
« no previous file with comments | « build/build_nexe.py ('k') | build/untrusted.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 'common.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'nacl_core_sdk',
12 'type': 'none',
13 'dependencies': [
14 '../src/shared/gio/gio.gyp:gio_lib',
15 '../src/shared/platform/platform.gyp:platform_lib',
16 '../src/shared/srpc/srpc.gyp:srpc_lib',
17 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr',
18 '../src/untrusted/irt/irt.gyp:irt_core_nexe',
19 '../src/untrusted/irt_stub/irt_stub.gyp:ppapi_stub_lib',
20 '../src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
21 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib',
22 '../src/untrusted/nacl/nacl.gyp:nacl_lib',
23 '../src/untrusted/nosys/nosys.gyp:nosys_lib',
24 '../src/untrusted/pthread/pthread.gyp:pthread_lib',
25 ],
26 'conditions': [
27 # these libraries don't currently exist on arm
28 ['target_arch!="arm"', {
29 'dependencies': [
30 '../src/shared/imc/imc.gyp:imc_lib',
31 '../src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib',
32 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib',
33 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib',
34 ],
35 }],
36 ],
37 },
38 ],
39 }
40
OLDNEW
« no previous file with comments | « build/build_nexe.py ('k') | build/untrusted.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698