Supervised user import: Listen for profile creation/deletion
[chromium-blink-merge.git] / third_party / boringssl / boringssl_nacl.gyp
blobcfd43b9940a770f0cc835ef6a15aef5bd3eb74ee
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.
5   'includes': [
6     '../../native_client/build/untrusted.gypi',
7   ],
8   'targets': [
9     {
10       'target_name': 'boringssl_nacl',
11       'type': 'none',
12       'variables': {
13         'nlib_target': 'libboringssl_nacl.a',
14         'build_glibc': 0,
15         'build_newlib': 0,
16         'build_pnacl_newlib': 1,
17       },
18       'dependencies': [
19         '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untrusted',
20       ],
21       'includes': [
22         # Include the auto-generated gypi file.
23         'boringssl.gypi'
24       ],
25       'sources': [
26         '<@(boringssl_lib_sources)',
27       ],
28       'defines': [
29         'OPENSSL_NO_ASM',
30       ],
31       'include_dirs': [
32         'src/include',
33         # This is for arm_arch.h, which is needed by some asm files. Since the
34         # asm files are generated and kept in a different directory, they
35         # cannot use relative paths to find this file.
36         'src/crypto',
37       ],
38       'direct_dependent_settings': {
39         'include_dirs': [
40           'src/include',
41         ],
42       },
43       'pnacl_compile_flags': [
44         '-Wno-sometimes-uninitialized',
45         '-Wno-unused-variable',
46       ],
47     },  # target boringssl_nacl
48   ],