Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Issue 2344973002: Update libsrtp to version 2.0 (Closed)

Created:
4 years, 3 months ago by mattdr-at-chromium
Modified:
4 years, 2 months ago
CC:
chromium-reviews
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Collapse srtp directory #

Patch Set 3 : New libsrtp patches. Updated comments. #

Patch Set 4 : Update README.chromium #

Patch Set 5 : Delete libsrtp.gyp. #

Total comments: 11

Patch Set 6 : Feedback for BUILD.gn #

Patch Set 7 : Add '.' back to include_dirs #

Unified diffs Side-by-side diffs Delta from patch set Stats (+9892 lines, -35595 lines) Patch
D .gitignore View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
M BUILD.gn View 1 2 3 4 5 6 1 chunk +167 lines, -316 lines 0 comments Download
A + CHANGES View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A + LICENSE View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A + README View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M README.chromium View 1 2 3 4 5 6 2 chunks +3 lines, -16 lines 0 comments Download
A + TODO View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A VERSION View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M config/config.h View 1 2 3 4 5 6 1 chunk +12 lines, -13 lines 0 comments Download
A crypto/cipher/aes_gcm_ossl.c View 1 2 3 4 5 6 1 chunk +567 lines, -0 lines 0 comments Download
A + crypto/cipher/aes_icm_ossl.c View 1 2 3 4 5 6 8 chunks +171 lines, -222 lines 0 comments Download
A crypto/cipher/cipher.c View 1 2 3 4 5 6 1 chunk +636 lines, -0 lines 0 comments Download
A crypto/cipher/null_cipher.c View 1 2 3 4 5 6 1 chunk +156 lines, -0 lines 0 comments Download
A crypto/hash/auth.c View 1 2 3 4 5 6 1 chunk +190 lines, -0 lines 0 comments Download
A crypto/hash/hmac_ossl.c View 1 2 3 4 5 6 1 chunk +259 lines, -0 lines 0 comments Download
A crypto/hash/null_auth.c View 1 2 3 4 5 6 1 chunk +161 lines, -0 lines 0 comments Download
A + crypto/include/aes.h View 1 2 3 4 5 6 2 chunks +26 lines, -33 lines 0 comments Download
A + crypto/include/aes_gcm_ossl.h View 1 2 3 4 5 6 2 chunks +12 lines, -12 lines 0 comments Download
A + crypto/include/aes_icm.h View 1 2 3 4 5 6 2 chunks +16 lines, -32 lines 0 comments Download
A + crypto/include/aes_icm_ossl.h View 1 2 3 4 5 6 1 chunk +10 lines, -25 lines 0 comments Download
A + crypto/include/alloc.h View 1 2 3 4 5 6 1 chunk +10 lines, -4 lines 0 comments Download
A crypto/include/auth.h View 1 2 3 4 5 6 1 chunk +166 lines, -0 lines 0 comments Download
A crypto/include/cipher.h View 1 2 3 4 5 6 1 chunk +222 lines, -0 lines 0 comments Download
A crypto/include/crypto_kernel.h View 1 2 3 4 5 6 1 chunk +210 lines, -0 lines 0 comments Download
A crypto/include/crypto_types.h View 1 2 3 4 5 6 1 chunk +116 lines, -0 lines 0 comments Download
A + crypto/include/datatypes.h View 1 2 3 4 5 6 7 chunks +20 lines, -53 lines 0 comments Download
A crypto/include/err.h View 1 2 3 4 5 6 1 chunk +142 lines, -0 lines 0 comments Download
A + crypto/include/integers.h View 1 2 3 4 5 6 4 chunks +8 lines, -7 lines 0 comments Download
A + crypto/include/key.h View 1 2 3 4 5 6 2 chunks +34 lines, -30 lines 0 comments Download
A + crypto/include/null_auth.h View 1 2 3 4 5 6 2 chunks +22 lines, -17 lines 0 comments Download
A + crypto/include/null_cipher.h View 1 2 3 4 5 6 2 chunks +18 lines, -28 lines 0 comments Download
A + crypto/include/rdb.h View 1 2 3 4 5 6 2 chunks +33 lines, -34 lines 0 comments Download
A + crypto/include/rdbx.h View 1 2 3 4 5 6 1 chunk +51 lines, -86 lines 0 comments Download
A + crypto/include/stat.h View 1 2 3 4 5 6 1 chunk +10 lines, -12 lines 0 comments Download
A + crypto/kernel/alloc.c View 1 2 3 4 5 6 2 chunks +6 lines, -36 lines 0 comments Download
A crypto/kernel/crypto_kernel.c View 1 2 3 4 5 6 1 chunk +584 lines, -0 lines 0 comments Download
A + crypto/kernel/err.c View 1 2 3 4 5 6 2 chunks +51 lines, -39 lines 0 comments Download
A + crypto/kernel/key.c View 1 2 3 4 5 6 2 chunks +58 lines, -57 lines 0 comments Download
A + crypto/math/datatypes.c View 1 2 3 4 5 6 5 chunks +20 lines, -82 lines 0 comments Download
A crypto/math/stat.c View 1 2 3 4 5 6 1 chunk +226 lines, -0 lines 0 comments Download
A + crypto/replay/rdb.c View 1 2 3 4 5 6 2 chunks +62 lines, -61 lines 0 comments Download
A crypto/replay/rdbx.c View 1 2 3 4 5 6 1 chunk +347 lines, -0 lines 0 comments Download
A + crypto/replay/ut_sim.c View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A + crypto/test/auth_driver.c View 1 2 3 4 5 6 4 chunks +7 lines, -8 lines 0 comments Download
A + crypto/test/cipher_driver.c View 1 2 3 4 5 6 27 chunks +103 lines, -119 lines 0 comments Download
A + crypto/test/datatypes_driver.c View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A + crypto/test/kernel_driver.c View 1 2 3 4 5 6 4 chunks +13 lines, -13 lines 0 comments Download
A + include/ekt.h View 1 2 3 4 5 6 3 chunks +35 lines, -63 lines 0 comments Download
A + include/getopt_s.h View 1 2 3 4 5 6 2 chunks +8 lines, -0 lines 0 comments Download
A + include/rtp.h View 1 2 3 4 5 6 3 chunks +43 lines, -12 lines 0 comments Download
A + include/rtp_priv.h View 1 2 3 4 5 6 1 chunk +0 lines, -21 lines 0 comments Download
A + include/srtp.h View 1 2 3 4 5 6 48 chunks +430 lines, -212 lines 0 comments Download
A include/srtp_priv.h View 1 2 3 4 5 6 1 chunk +164 lines, -0 lines 0 comments Download
A + include/ut_sim.h View 1 2 3 4 5 6 2 chunks +7 lines, -0 lines 0 comments Download
D libsrtp.gyp View 1 2 3 4 5 6 1 chunk +0 lines, -411 lines 0 comments Download
D srtp/.gitignore View 1 2 3 4 5 6 1 chunk +0 lines, -48 lines 0 comments Download
D srtp/CHANGES View 1 2 3 4 5 6 1 chunk +0 lines, -275 lines 0 comments Download
D srtp/LICENSE View 1 2 3 4 5 6 1 chunk +0 lines, -35 lines 0 comments Download
D srtp/Makefile.in View 1 2 3 4 5 6 1 chunk +0 lines, -321 lines 0 comments Download
D srtp/README View 1 2 3 4 5 6 1 chunk +0 lines, -182 lines 0 comments Download
D srtp/TODO View 1 2 3 4 5 6 1 chunk +0 lines, -66 lines 0 comments Download
D srtp/VERSION View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
D srtp/crypto/.cvsignore View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
D srtp/crypto/Makefile.in View 1 2 3 4 5 6 1 chunk +0 lines, -111 lines 0 comments Download
D srtp/crypto/VERSION View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
D srtp/crypto/cipher/aes.c View 1 2 3 4 5 6 1 chunk +0 lines, -2150 lines 0 comments Download
D srtp/crypto/cipher/aes_cbc.c View 1 2 3 4 5 6 1 chunk +0 lines, -565 lines 0 comments Download
D srtp/crypto/cipher/aes_gcm_ossl.c View 1 2 3 4 5 6 1 chunk +0 lines, -572 lines 0 comments Download
D srtp/crypto/cipher/aes_icm.c View 1 2 3 4 5 6 1 chunk +0 lines, -592 lines 0 comments Download
D srtp/crypto/cipher/aes_icm_ossl.c View 1 2 3 4 5 6 1 chunk +0 lines, -563 lines 0 comments Download
D srtp/crypto/cipher/cipher.c View 1 2 3 4 5 6 1 chunk +0 lines, -512 lines 0 comments Download
D srtp/crypto/cipher/null_cipher.c View 1 2 3 4 5 6 1 chunk +0 lines, -163 lines 0 comments Download
D srtp/crypto/hash/auth.c View 1 2 3 4 5 6 1 chunk +0 lines, -187 lines 0 comments Download
D srtp/crypto/hash/hmac.c View 1 2 3 4 5 6 1 chunk +0 lines, -272 lines 0 comments Download
D srtp/crypto/hash/hmac_ossl.c View 1 2 3 4 5 6 1 chunk +0 lines, -302 lines 0 comments Download
D srtp/crypto/hash/null_auth.c View 1 2 3 4 5 6 1 chunk +0 lines, -165 lines 0 comments Download
D srtp/crypto/hash/sha1.c View 1 2 3 4 5 6 1 chunk +0 lines, -408 lines 0 comments Download
D srtp/crypto/include/.cvsignore View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
D srtp/crypto/include/aes.h View 1 2 3 4 5 6 1 chunk +0 lines, -88 lines 0 comments Download
D srtp/crypto/include/aes_cbc.h View 1 2 3 4 5 6 1 chunk +0 lines, -88 lines 0 comments Download
D srtp/crypto/include/aes_gcm_ossl.h View 1 2 3 4 5 6 1 chunk +0 lines, -63 lines 0 comments Download
D srtp/crypto/include/aes_icm.h View 1 2 3 4 5 6 1 chunk +0 lines, -96 lines 0 comments Download
D srtp/crypto/include/aes_icm_ossl.h View 1 2 3 4 5 6 1 chunk +0 lines, -85 lines 0 comments Download
D srtp/crypto/include/alloc.h View 1 2 3 4 5 6 1 chunk +0 lines, -57 lines 0 comments Download
D srtp/crypto/include/auth.h View 1 2 3 4 5 6 1 chunk +0 lines, -171 lines 0 comments Download
D srtp/crypto/include/cipher.h View 1 2 3 4 5 6 1 chunk +0 lines, -254 lines 0 comments Download
D srtp/crypto/include/crypto.h View 1 2 3 4 5 6 1 chunk +0 lines, -79 lines 0 comments Download
D srtp/crypto/include/crypto_kernel.h View 1 2 3 4 5 6 1 chunk +0 lines, -281 lines 0 comments Download
D srtp/crypto/include/crypto_math.h View 1 2 3 4 5 6 1 chunk +0 lines, -239 lines 0 comments Download
D srtp/crypto/include/crypto_types.h View 1 2 3 4 5 6 1 chunk +0 lines, -248 lines 0 comments Download
D srtp/crypto/include/cryptoalg.h View 1 2 3 4 5 6 1 chunk +0 lines, -133 lines 0 comments Download
D srtp/crypto/include/datatypes.h View 1 2 3 4 5 6 1 chunk +0 lines, -522 lines 0 comments Download
D srtp/crypto/include/err.h View 1 2 3 4 5 6 1 chunk +0 lines, -209 lines 0 comments Download
D srtp/crypto/include/gf2_8.h View 1 2 3 4 5 6 1 chunk +0 lines, -79 lines 0 comments Download
D srtp/crypto/include/hmac.h View 1 2 3 4 5 6 1 chunk +0 lines, -82 lines 0 comments Download
D srtp/crypto/include/integers.h View 1 2 3 4 5 6 1 chunk +0 lines, -146 lines 0 comments Download
D srtp/crypto/include/kernel_compat.h View 1 2 3 4 5 6 1 chunk +0 lines, -84 lines 0 comments Download
D srtp/crypto/include/key.h View 1 2 3 4 5 6 1 chunk +0 lines, -82 lines 0 comments Download
D srtp/crypto/include/null_auth.h View 1 2 3 4 5 6 1 chunk +0 lines, -68 lines 0 comments Download
D srtp/crypto/include/null_cipher.h View 1 2 3 4 5 6 1 chunk +0 lines, -80 lines 0 comments Download
D srtp/crypto/include/prng.h View 1 2 3 4 5 6 1 chunk +0 lines, -95 lines 0 comments Download
D srtp/crypto/include/rand_source.h View 1 2 3 4 5 6 1 chunk +0 lines, -91 lines 0 comments Download
D srtp/crypto/include/rdb.h View 1 2 3 4 5 6 1 chunk +0 lines, -130 lines 0 comments Download
D srtp/crypto/include/rdbx.h View 1 2 3 4 5 6 1 chunk +0 lines, -228 lines 0 comments Download
D srtp/crypto/include/sha1.h View 1 2 3 4 5 6 1 chunk +0 lines, -152 lines 0 comments Download
D srtp/crypto/include/stat.h View 1 2 3 4 5 6 1 chunk +0 lines, -69 lines 0 comments Download
D srtp/crypto/include/xfm.h View 1 2 3 4 5 6 1 chunk +0 lines, -175 lines 0 comments Download
D srtp/crypto/kernel/alloc.c View 1 2 3 4 5 6 1 chunk +0 lines, -125 lines 0 comments Download
D srtp/crypto/kernel/crypto_kernel.c View 1 2 3 4 5 6 1 chunk +0 lines, -614 lines 0 comments Download
D srtp/crypto/kernel/err.c View 1 2 3 4 5 6 1 chunk +0 lines, -152 lines 0 comments Download
D srtp/crypto/kernel/key.c View 1 2 3 4 5 6 1 chunk +0 lines, -119 lines 0 comments Download
D srtp/crypto/math/datatypes.c View 1 2 3 4 5 6 1 chunk +0 lines, -569 lines 0 comments Download
D srtp/crypto/math/gf2_8.c View 1 2 3 4 5 6 1 chunk +0 lines, -87 lines 0 comments Download
D srtp/crypto/math/math.c View 1 2 3 4 5 6 1 chunk +0 lines, -806 lines 0 comments Download
D srtp/crypto/math/stat.c View 1 2 3 4 5 6 1 chunk +0 lines, -407 lines 0 comments Download
D srtp/crypto/replay/rdb.c View 1 2 3 4 5 6 1 chunk +0 lines, -141 lines 0 comments Download
D srtp/crypto/replay/rdbx.c View 1 2 3 4 5 6 1 chunk +0 lines, -356 lines 0 comments Download
D srtp/crypto/replay/ut_sim.c View 1 2 3 4 5 6 1 chunk +0 lines, -109 lines 0 comments Download
D srtp/crypto/rng/ctr_prng.c View 1 2 3 4 5 6 1 chunk +0 lines, -114 lines 0 comments Download
D srtp/crypto/rng/prng.c View 1 2 3 4 5 6 1 chunk +0 lines, -184 lines 0 comments Download
D srtp/crypto/rng/rand_linux_kernel.c View 1 2 3 4 5 6 1 chunk +0 lines, -65 lines 0 comments Download
D srtp/crypto/rng/rand_source.c View 1 2 3 4 5 6 1 chunk +0 lines, -158 lines 0 comments Download
D srtp/crypto/rng/rand_source_ossl.c View 1 2 3 4 5 6 1 chunk +0 lines, -70 lines 0 comments Download
D srtp/crypto/test/.cvsignore View 1 2 3 4 5 6 1 chunk +0 lines, -8 lines 0 comments Download
D srtp/crypto/test/aes_calc.c View 1 2 3 4 5 6 1 chunk +0 lines, -159 lines 0 comments Download
D srtp/crypto/test/auth_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -200 lines 0 comments Download
D srtp/crypto/test/cipher_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -622 lines 0 comments Download
D srtp/crypto/test/datatypes_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -241 lines 0 comments Download
D srtp/crypto/test/env.c View 1 2 3 4 5 6 1 chunk +0 lines, -103 lines 0 comments Download
D srtp/crypto/test/kernel_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -129 lines 0 comments Download
D srtp/crypto/test/rand_gen.c View 1 2 3 4 5 6 1 chunk +0 lines, -143 lines 0 comments Download
D srtp/crypto/test/rand_gen_soak.c View 1 2 3 4 5 6 1 chunk +0 lines, -116 lines 0 comments Download
D srtp/crypto/test/sha1_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -556 lines 0 comments Download
D srtp/crypto/test/stat_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -246 lines 0 comments Download
D srtp/doc/.cvsignore View 1 2 3 4 5 6 1 chunk +0 lines, -3 lines 0 comments Download
D srtp/doc/Doxyfile View 1 2 3 4 5 6 1 chunk +0 lines, -1042 lines 0 comments Download
D srtp/doc/Makefile.in View 1 2 3 4 5 6 1 chunk +0 lines, -44 lines 0 comments Download
D srtp/doc/crypto_kernel.txt View 1 2 3 4 5 6 1 chunk +0 lines, -76 lines 0 comments Download
D srtp/doc/header.template View 1 2 3 4 5 6 1 chunk +0 lines, -115 lines 0 comments Download
D srtp/doc/intro.txt View 1 2 3 4 5 6 1 chunk +0 lines, -395 lines 0 comments Download
D srtp/doc/references.txt View 1 2 3 4 5 6 1 chunk +0 lines, -21 lines 0 comments Download
A + srtp/ekt.c View 1 2 3 4 5 6 12 chunks +31 lines, -52 lines 0 comments Download
D srtp/include/ekt.h View 1 2 3 4 5 6 1 chunk +0 lines, -201 lines 0 comments Download
D srtp/include/getopt_s.h View 1 2 3 4 5 6 1 chunk +0 lines, -60 lines 0 comments Download
D srtp/include/rtp.h View 1 2 3 4 5 6 1 chunk +0 lines, -139 lines 0 comments Download
D srtp/include/rtp_priv.h View 1 2 3 4 5 6 1 chunk +0 lines, -74 lines 0 comments Download
D srtp/include/srtp.h View 1 2 3 4 5 6 1 chunk +0 lines, -1283 lines 0 comments Download
D srtp/include/srtp_priv.h View 1 2 3 4 5 6 1 chunk +0 lines, -272 lines 0 comments Download
D srtp/include/ut_sim.h View 1 2 3 4 5 6 1 chunk +0 lines, -80 lines 0 comments Download
D srtp/install-sh View 1 2 3 4 5 6 1 chunk +0 lines, -251 lines 0 comments Download
D srtp/install-win.bat View 1 2 3 4 5 6 1 chunk +0 lines, -31 lines 0 comments Download
A + srtp/srtp.c View 1 2 3 4 5 6 140 chunks +886 lines, -624 lines 0 comments Download
D srtp/srtp.def View 1 2 3 4 5 6 1 chunk +0 lines, -91 lines 0 comments Download
D srtp/srtp/ekt.c View 1 2 3 4 5 6 1 chunk +0 lines, -279 lines 0 comments Download
D srtp/srtp/srtp.c View 1 2 3 4 5 6 1 chunk +0 lines, -3574 lines 0 comments Download
D srtp/tables/aes_tables.c View 1 2 3 4 5 6 1 chunk +0 lines, -350 lines 0 comments Download
D srtp/test/.cvsignore View 1 2 3 4 5 6 1 chunk +0 lines, -13 lines 0 comments Download
D srtp/test/dtls_srtp_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -262 lines 0 comments Download
D srtp/test/getopt_s.c View 1 2 3 4 5 6 1 chunk +0 lines, -112 lines 0 comments Download
D srtp/test/lfsr.c View 1 2 3 4 5 6 1 chunk +0 lines, -345 lines 0 comments Download
D srtp/test/rdbx_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -366 lines 0 comments Download
D srtp/test/replay_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -261 lines 0 comments Download
D srtp/test/roc_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -175 lines 0 comments Download
D srtp/test/rtp.c View 1 2 3 4 5 6 1 chunk +0 lines, -227 lines 0 comments Download
D srtp/test/rtp_decoder.h View 1 2 3 4 5 6 1 chunk +0 lines, -119 lines 0 comments Download
D srtp/test/rtp_decoder.c View 1 2 3 4 5 6 1 chunk +0 lines, -516 lines 0 comments Download
D srtp/test/rtpw.c View 1 2 3 4 5 6 1 chunk +0 lines, -713 lines 0 comments Download
D srtp/test/rtpw_test.sh View 1 2 3 4 5 6 1 chunk +0 lines, -162 lines 0 comments Download
D srtp/test/rtpw_test_gcm.sh View 1 2 3 4 5 6 1 chunk +0 lines, -237 lines 0 comments Download
D srtp/test/srtp_driver.c View 1 2 3 4 5 6 1 chunk +0 lines, -2362 lines 0 comments Download
D srtp/timing View 1 2 3 4 5 6 1 chunk +0 lines, -36 lines 0 comments Download
D srtp/undos.sh View 1 2 3 4 5 6 1 chunk +0 lines, -43 lines 0 comments Download
D srtp/update.sh View 1 2 3 4 5 6 1 chunk +0 lines, -46 lines 0 comments Download
A + test/dtls_srtp_driver.c View 1 2 3 4 5 6 8 chunks +22 lines, -21 lines 0 comments Download
A + test/getopt_s.c View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/rdbx_driver.c View 1 2 3 4 5 6 12 chunks +58 lines, -58 lines 0 comments Download
A + test/replay_driver.c View 1 2 3 4 5 6 8 chunks +48 lines, -48 lines 0 comments Download
A + test/roc_driver.c View 1 2 3 4 5 6 7 chunks +20 lines, -20 lines 0 comments Download
A + test/rtp.c View 1 2 3 4 5 6 3 chunks +4 lines, -4 lines 0 comments Download
A + test/rtpw.c View 1 2 3 4 5 6 14 chunks +27 lines, -37 lines 0 comments Download
A + test/rtpw_test.sh View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/rtpw_test_gcm.sh View 1 2 3 4 5 6 0 chunks +-1 lines, --1 lines 0 comments Download
A test/srtp_driver.c View 1 2 3 4 5 6 1 chunk +2985 lines, -0 lines 0 comments Download
A + test/util.h View 1 2 3 4 5 6 2 chunks +17 lines, -21 lines 0 comments Download
A test/util.c View 1 2 3 4 5 6 1 chunk +185 lines, -0 lines 0 comments Download

Messages

Total messages: 16 (4 generated)
mattdr-at-chromium
4 years, 2 months ago (2016-10-04 23:33:21 UTC) #3
kjellander_chromium
Nice work! I just have a few minor comments on BUILD.gn but I won't block ...
4 years, 2 months ago (2016-10-05 07:14:13 UTC) #4
kjellander_chromium
On 2016/10/05 07:14:13, kjellander_chromium wrote: > Nice work! I just have a few minor comments ...
4 years, 2 months ago (2016-10-05 07:15:20 UTC) #5
phoglund_chromium
Not sure if I can contribute much here, but as far I can tell this ...
4 years, 2 months ago (2016-10-05 07:31:59 UTC) #6
mattdr-at-chromium
https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn File BUILD.gn (right): https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn#newcode1 BUILD.gn:1: # Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 2 months ago (2016-10-05 08:46:41 UTC) #7
mattdr-at-chromium
https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn File BUILD.gn (right): https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn#newcode47 BUILD.gn:47: ".", On 2016/10/05 08:46:41, mattdr-at-chromium wrote: > On 2016/10/05 ...
4 years, 2 months ago (2016-10-05 09:02:21 UTC) #8
mattdr-at-chromium
Henrik, if this seems okay to you can I impose on you for your commit ...
4 years, 2 months ago (2016-10-05 09:10:23 UTC) #9
kjellander_chromium
lgtm https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn File BUILD.gn (right): https://codereview.chromium.org/2344973002/diff/40001/BUILD.gn#newcode47 BUILD.gn:47: ".", On 2016/10/05 09:02:21, mattdr-at-chromium wrote: > On ...
4 years, 2 months ago (2016-10-05 09:17:12 UTC) #10
kjellander_chromium
On 2016/10/05 09:10:23, mattdr-at-chromium wrote: > Henrik, if this seems okay to you can I ...
4 years, 2 months ago (2016-10-05 11:45:08 UTC) #11
kjellander_chromium
On 2016/10/05 11:45:08, kjellander_chromium wrote: > On 2016/10/05 09:10:23, mattdr-at-chromium wrote: > > Henrik, if ...
4 years, 2 months ago (2016-10-06 08:59:03 UTC) #13
kjellander_chromium
Committed patchset #7 (id:60001) manually as 7baef709753e8920ecf881558ade2095cd6387f9 (presubmit successful).
4 years, 2 months ago (2016-10-06 08:59:05 UTC) #14
kjellander_chromium
4 years, 2 months ago (2016-10-06 09:01:24 UTC) #16
Message was sent while issue was closed.
On 2016/10/06 08:59:05, kjellander_chromium wrote:
> Committed patchset #7 (id:60001) manually as
> 7baef709753e8920ecf881558ade2095cd6387f9 (presubmit successful).

Committed now with 'git cl land'. I guess I couldn't close the CL from command
line since I didn't own it or something, so I did that manually via the Web UI
now.
I verified the number of added/removed lines were identical to your CL, so the
commit should be identical.
See
https://chromium.googlesource.com/chromium/deps/libsrtp/+/7baef709753e8920ecf...
for details.

Powered by Google App Engine
This is Rietveld 408576698