Chromium Code Reviews| Index: build/nacl_sdk.gyp |
| diff --git a/build/nacl_sdk.gyp b/build/nacl_sdk.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d158bb99bb5f2684231bcedc1554ab26e6092d63 |
| --- /dev/null |
| +++ b/build/nacl_sdk.gyp |
| @@ -0,0 +1,33 @@ |
| +# Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'includes': [ |
| + 'common.gypi', |
| + ], |
| + 'targets': [ |
| + { |
| + 'target_name': 'nacl_sdk', |
|
bradn
2012/09/06 03:00:21
Did you really want to call this nacl_sdk given th
binji
2012/09/06 18:36:40
Done.
|
| + 'type': 'none', |
| + 'dependencies': [ |
| + '../src/shared/gio/gio.gyp:gio_lib', |
| + '../src/shared/imc/imc.gyp:imc_lib', |
| + '../src/shared/platform/platform.gyp:platform_lib', |
| + '../src/shared/srpc/srpc.gyp:srpc_lib', |
| + '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr', |
| + '../src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib', |
| + '../src/untrusted/irt/irt.gyp:irt_core_nexe', |
| + '../src/untrusted/irt_stub/irt_stub.gyp:ppapi_stub_lib', |
| + '../src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
| + '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', |
| + '../src/untrusted/nacl/nacl.gyp:nacl_lib', |
| + '../src/untrusted/nosys/nosys.gyp:nosys_lib', |
| + '../src/untrusted/pthread/pthread.gyp:pthread_lib', |
| + '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', |
| + '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', |
| + ], |
| + }, |
| + ], |
| +} |
| + |