| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 'includes': [ | 5 'includes': [ |
| 6 '../../native_client/build/untrusted.gypi', | 6 '../../native_client/build/untrusted.gypi', |
| 7 ], | 7 ], |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'boringssl_nacl', | 10 'target_name': 'boringssl_nacl', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 '<@(boringssl_crypto_sources)', | 26 '<@(boringssl_crypto_sources)', |
| 27 '<@(boringssl_ssl_sources)', | 27 '<@(boringssl_ssl_sources)', |
| 28 ], | 28 ], |
| 29 'defines': [ | 29 'defines': [ |
| 30 'OPENSSL_NO_ASM', | 30 'OPENSSL_NO_ASM', |
| 31 ], | 31 ], |
| 32 'include_dirs': [ | 32 'include_dirs': [ |
| 33 'src/include', | 33 'src/include', |
| 34 # This is for arm_arch.h, which is needed by some asm files. Since the | |
| 35 # asm files are generated and kept in a different directory, they | |
| 36 # cannot use relative paths to find this file. | |
| 37 'src/crypto', | |
| 38 ], | 34 ], |
| 39 'direct_dependent_settings': { | 35 'direct_dependent_settings': { |
| 40 'include_dirs': [ | 36 'include_dirs': [ |
| 41 'src/include', | 37 'src/include', |
| 42 ], | 38 ], |
| 43 }, | 39 }, |
| 44 'pnacl_compile_flags': [ | 40 'pnacl_compile_flags': [ |
| 45 '-Wno-sometimes-uninitialized', | 41 '-Wno-sometimes-uninitialized', |
| 46 '-Wno-unused-variable', | 42 '-Wno-unused-variable', |
| 47 ], | 43 ], |
| 48 }, # target boringssl_nacl | 44 }, # target boringssl_nacl |
| 49 ], | 45 ], |
| 50 } | 46 } |
| OLD | NEW |