Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'defines': [ | 7 'defines': [ |
| 8 'HAVE_STDLIB_H', | 8 'HAVE_STDLIB_H', |
| 9 'HAVE_STRING_H', | 9 'HAVE_STRING_H', |
| 10 ], | 10 ], |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 100 'srtp/config_in.h', | 100 'srtp/config_in.h', |
| 101 'srtp/include/ekt.h', | 101 'srtp/include/ekt.h', |
| 102 'srtp/include/getopt_s.h', | 102 'srtp/include/getopt_s.h', |
| 103 'srtp/include/rtp.h', | 103 'srtp/include/rtp.h', |
| 104 'srtp/include/rtp_priv.h', | 104 'srtp/include/rtp_priv.h', |
| 105 'srtp/include/srtp.h', | 105 'srtp/include/srtp.h', |
| 106 'srtp/include/srtp_priv.h', | 106 'srtp/include/srtp_priv.h', |
| 107 'srtp/include/ut_sim.h', | 107 'srtp/include/ut_sim.h', |
| 108 | 108 |
| 109 # headers | 109 # headers |
| 110 'srtp/crypto/aes_cbc.h', | 110 'srtp/crypto/include/aes_cbc.h', |
| 111 'srtp/crypto/aes.h', | 111 'srtp/crypto/include/aes.h', |
| 112 'srtp/crypto/aes_icm.h', | 112 'srtp/crypto/include/aes_icm.h', |
| 113 'srtp/crypto/alloc.h', | 113 'srtp/crypto/include/alloc.h', |
| 114 'srtp/crypto/auth.h', | 114 'srtp/crypto/include/auth.h', |
| 115 'srtp/crypto/cipher.h', | 115 'srtp/crypto/include/cipher.h', |
| 116 'srtp/crypto/config.h', | 116 'srtp/crypto/include/config.h', |
| 117 'srtp/crypto/cryptoalg.h', | 117 'srtp/crypto/include/cryptoalg.h', |
| 118 'srtp/crypto/crypto.h', | 118 'srtp/crypto/include/crypto.h', |
| 119 'srtp/crypto/crypto_kernel.h', | 119 'srtp/crypto/include/crypto_kernel.h', |
| 120 'srtp/crypto/crypto_math.h', | 120 'srtp/crypto/include/crypto_math.h', |
| 121 'srtp/crypto/crypto_types.h', | 121 'srtp/crypto/include/crypto_types.h', |
| 122 'srtp/crypto/datatypes.h', | 122 'srtp/crypto/include/datatypes.h', |
| 123 'srtp/crypto/err.h', | 123 'srtp/crypto/include/err.h', |
| 124 'srtp/crypto/gf2_8.h', | 124 'srtp/crypto/include/gf2_8.h', |
| 125 'srtp/crypto/hmac.h', | 125 'srtp/crypto/include/hmac.h', |
| 126 'srtp/crypto/integers.h', | 126 'srtp/crypto/include/integers.h', |
| 127 'srtp/crypto/kernel_compat.h', | 127 'srtp/crypto/include/kernel_compat.h', |
| 128 'srtp/crypto/key.h', | 128 'srtp/crypto/include/key.h', |
| 129 'srtp/crypto/null_auth.h', | 129 'srtp/crypto/include/null_auth.h', |
| 130 'srtp/crypto/null_cipher.h', | 130 'srtp/crypto/include/null_cipher.h', |
| 131 'srtp/crypto/prng.h', | 131 'srtp/crypto/include/prng.h', |
| 132 'srtp/crypto/rand_source.h', | 132 'srtp/crypto/include/rand_source.h', |
| 133 'srtp/crypto/rdb.h', | 133 'srtp/crypto/include/rdb.h', |
| 134 'srtp/crypto/rdbx.h', | 134 'srtp/crypto/include/rdbx.h', |
| 135 'srtp/crypto/sha1.h', | 135 'srtp/crypto/include/sha1.h', |
| 136 'srtp/crypto/stat.h', | 136 'srtp/crypto/include/stat.h', |
| 137 'srtp/crypto/xfm.h', | 137 'srtp/crypto/include/xfm.h', |
| 138 | 138 |
| 139 # sources | 139 # sources |
| 140 'srtp/srtp/ekt.c', | 140 'srtp/srtp/ekt.c', |
| 141 'srtp/srtp/srtp.c', | 141 'srtp/srtp/srtp.c', |
| 142 | 142 |
| 143 'srtp/crypto/cipher/aes.c', | 143 'srtp/crypto/cipher/aes.c', |
| 144 'srtp/crypto/cipher/aes_cbc.c', | 144 'srtp/crypto/cipher/aes_cbc.c', |
| 145 'srtp/crypto/cipher/aes_icm.c', | 145 'srtp/crypto/cipher/aes_icm.c', |
| 146 'srtp/crypto/cipher/cipher.c', | 146 'srtp/crypto/cipher/cipher.c', |
| 147 'srtp/crypto/cipher/null_cipher.c', | 147 'srtp/crypto/cipher/null_cipher.c', |
| 148 'srtp/crypto/hash/auth.c', | 148 'srtp/crypto/hash/auth.c', |
| 149 'srtp/crypto/hash/hmac.c', | 149 'srtp/crypto/hash/hmac.c', |
| 150 'srtp/crypto/hash/null_auth.c', | 150 'srtp/crypto/hash/null_auth.c', |
| 151 'srtp/crypto/hash/sha1.c', | 151 'srtp/crypto/hash/sha1.c', |
| 152 'srtp/crypto/kernel/alloc.c', | 152 'srtp/crypto/kernel/alloc.c', |
| 153 'srtp/crypto/kernel/crypto_kernel.c', | 153 'srtp/crypto/kernel/crypto_kernel.c', |
| 154 'srtp/crypto/kernel/err.c', | 154 'srtp/crypto/kernel/err.c', |
| 155 'srtp/crypto/kernel/key.c', | 155 'srtp/crypto/kernel/key.c', |
| 156 'srtp/crypto/math/datatypes.c', | 156 'srtp/crypto/math/datatypes.c', |
| 157 'srtp/crypto/math/gf2_8.c', | 157 'srtp/crypto/math/gf2_8.c', |
| 158 'srtp/crypto/math/math.c', | |
|
Sergey Ulanov
2012/01/24 04:56:56
Why remove math.c?
mallinath
2012/01/24 06:28:57
math.c is not used when it's compiled and also it
| |
| 159 'srtp/crypto/math/stat.c', | 158 'srtp/crypto/math/stat.c', |
| 160 'srtp/crypto/replay/rdb.c', | 159 'srtp/crypto/replay/rdb.c', |
| 161 'srtp/crypto/replay/rdbx.c', | 160 'srtp/crypto/replay/rdbx.c', |
| 162 'srtp/crypto/replay/ut_sim.c', | 161 'srtp/crypto/replay/ut_sim.c', |
| 163 'srtp/crypto/rng/ctr_prng.c', | 162 'srtp/crypto/rng/ctr_prng.c', |
| 164 'srtp/crypto/rng/prng.c', | 163 'srtp/crypto/rng/prng.c', |
| 165 'srtp/crypto/rng/rand_source.c', | 164 'srtp/crypto/rng/rand_source.c', |
| 166 ], | 165 ], |
| 167 'conditions': [ | 166 'conditions': [ |
| 168 ['OS=="linux"', { | 167 ['OS=="linux"', { |
| 169 'sources': [ | 168 'sources': [ |
| 170 'srtp/crypto/rng/rand_linux_kernel.c', | 169 'srtp/crypto/rng/rand_linux_kernel.c', |
| 171 ], | 170 ], |
| 172 }], | 171 }], |
| 173 ] | 172 ] |
| 174 }, | 173 }, |
| 175 ], # targets | 174 ], # targets |
| 176 } | 175 } |
| 177 | 176 |
| 178 # Local Variables: | 177 # Local Variables: |
| 179 # tab-width:2 | 178 # tab-width:2 |
| 180 # indent-tabs-mode:nil | 179 # indent-tabs-mode:nil |
| 181 # End: | 180 # End: |
| 182 # vim: set expandtab tabstop=2 shiftwidth=2: | 181 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |