Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 The Chromium 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 | |
|
Mark Seaborn
2014/10/13 16:02:00
Can you name this file "libevent_nacl_nonsfi.gyp"?
hidehiko
2014/10/14 09:07:12
Done.
FYI: Though, I'm planning to add nonsfi buil
Mark Seaborn
2014/10/14 15:48:00
That's fine. I just don't want readers to misunde
| |
| 5 { | |
| 6 'includes': [ | |
| 7 '../../build/common_untrusted.gypi', | |
| 8 ], | |
| 9 'conditions': [ | |
| 10 ['disable_nacl==0', { | |
| 11 'targets': [ | |
| 12 { | |
| 13 'target_name': 'event_nonsfi_nacl', | |
|
Mark Seaborn
2014/10/13 16:02:01
Nit: "nonsfi" is used more often as a suffix than
hidehiko
2014/10/14 09:07:12
Hmm, the former pattern matches to namespace or in
| |
| 14 'type': 'none', | |
| 15 'sources': [ | |
| 16 'buffer.c', | |
| 17 'evbuffer.c', | |
| 18 'event.c', | |
| 19 'evutil.c', | |
| 20 'log.c', | |
| 21 'poll.c', | |
| 22 'signal.c', | |
| 23 'strlcpy.c', | |
| 24 'nacl/config.h', | |
| 25 'nacl/event-config.h', | |
| 26 ], | |
| 27 'defines': [ | |
| 28 'HAVE_CONFIG_H', | |
| 29 ], | |
| 30 'variables': { | |
| 31 'include_dirs': [ | |
| 32 'nacl', | |
|
Mark Seaborn
2014/10/13 16:02:01
Also "nacl_nonsfi" for this directory?
hidehiko
2014/10/14 09:07:12
Done.
| |
| 33 '<(DEPTH)/native_client/src/public/linux_syscalls/', | |
|
Mark Seaborn
2014/10/13 16:02:00
Nit: Trailing "/" not needed
hidehiko
2014/10/14 09:07:12
Done.
| |
| 34 ], | |
| 35 'nacl_untrusted_build': 1, | |
| 36 'nlib_target': 'libevent_nonsfi_nacl.a', | |
| 37 'build_glibc': 0, | |
| 38 'build_newlib': 0, | |
| 39 'build_irt': 0, | |
| 40 'build_pnacl_newlib': 0, | |
| 41 'build_nonsfi_helper': 1, | |
| 42 }, | |
| 43 'dependencies': [ | |
| 44 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | |
| 45 ], | |
| 46 }, | |
| 47 ], | |
| 48 }], | |
| 49 ], | |
| 50 } | |
| OLD | NEW |