Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'use_system_libsrtp%': 0, | 7 'use_system_libsrtp%': 0, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 54 # just work just fine, it has been tested on android/arm with srtp | 54 # just work just fine, it has been tested on android/arm with srtp |
| 55 # test applications and libjingle. | 55 # test applications and libjingle. |
| 56 'CPU_CISC', | 56 'CPU_CISC', |
| 57 ], | 57 ], |
| 58 }], | 58 }], |
| 59 ['target_arch=="mipsel" or target_arch=="mips64el"', { | 59 ['target_arch=="mipsel" or target_arch=="mips64el"', { |
| 60 'defines': [ | 60 'defines': [ |
| 61 'CPU_RISC', | 61 'CPU_RISC', |
| 62 ], | 62 ], |
| 63 }], | 63 }], |
| 64 ['target_arch=="mipsel" or target_arch=="arm" or target_arch=="armv7" or t arget_arch=="ia32"', { | |
| 65 'defines': [ | |
| 66 # Define FORCE_64BIT_ALIGN to avoid alignment-related-crashes like | |
| 67 # crbug/414919. | |
|
Sergey Ulanov
2014/09/22 21:57:52
It would be useful to have more details here to ex
| |
| 68 'FORCE_64BIT_ALIGN', | |
| 69 ], | |
| 70 }], | |
| 64 ], | 71 ], |
| 65 'direct_dependent_settings': { | 72 'direct_dependent_settings': { |
| 66 'include_dirs': [ | 73 'include_dirs': [ |
| 67 './config', | 74 './config', |
| 68 'srtp/include', | 75 'srtp/include', |
| 69 'srtp/crypto/include', | 76 'srtp/crypto/include', |
| 70 ], | 77 ], |
| 71 'conditions': [ | 78 'conditions': [ |
| 72 ['os_posix==1', { | 79 ['os_posix==1', { |
| 73 'defines': [ | 80 'defines': [ |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 367 'link_settings': { | 374 'link_settings': { |
| 368 'libraries': [ | 375 'libraries': [ |
| 369 '-lsrtp', | 376 '-lsrtp', |
| 370 ], | 377 ], |
| 371 }, | 378 }, |
| 372 }, # target libsrtp | 379 }, # target libsrtp |
| 373 ], # targets | 380 ], # targets |
| 374 }], | 381 }], |
| 375 ], | 382 ], |
| 376 } | 383 } |
| OLD | NEW |