Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 if (build_with_mozilla) { | 26 if (build_with_mozilla) { |
| 27 defines += [ "WEBRTC_MOZILLA_BUILD" ] | 27 defines += [ "WEBRTC_MOZILLA_BUILD" ] |
| 28 } | 28 } |
| 29 if (build_with_chromium) { | 29 if (build_with_chromium) { |
| 30 defines = [ | 30 defines = [ |
| 31 # TODO(kjellander): Cleanup unused ones and move defines closer to | 31 # TODO(kjellander): Cleanup unused ones and move defines closer to |
| 32 # the source when webrtc:4256 is completed. | 32 # the source when webrtc:4256 is completed. |
| 33 "FEATURE_ENABLE_VOICEMAIL", | 33 "FEATURE_ENABLE_VOICEMAIL", |
| 34 "EXPAT_RELATIVE_PATH", | 34 "EXPAT_RELATIVE_PATH", |
| 35 "GTEST_RELATIVE_PATH", | 35 "GTEST_RELATIVE_PATH", |
| 36 "NO_MAIN_THREAD_WRAPPING", | |
|
kthelgason
2017/03/28 13:40:45
This define is also in webrtc/base/BUILD.gn, close
| |
| 37 "NO_SOUND_SYSTEM", | 36 "NO_SOUND_SYSTEM", |
| 38 "WEBRTC_CHROMIUM_BUILD", | 37 "WEBRTC_CHROMIUM_BUILD", |
| 39 ] | 38 ] |
| 40 include_dirs = [ | 39 include_dirs = [ |
| 41 # The overrides must be included first as that is the mechanism for | 40 # The overrides must be included first as that is the mechanism for |
| 42 # selecting the override headers in Chromium. | 41 # selecting the override headers in Chromium. |
| 43 "../webrtc_overrides", | 42 "../webrtc_overrides", |
| 44 | 43 |
| 45 # Allow includes to be prefixed with webrtc/ in case it is not an | 44 # Allow includes to be prefixed with webrtc/ in case it is not an |
| 46 # immediate subdirectory of the top-level. | 45 # immediate subdirectory of the top-level. |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 501 ] | 500 ] |
| 502 | 501 |
| 503 deps = [ | 502 deps = [ |
| 504 "//base:base_java_test_support", | 503 "//base:base_java_test_support", |
| 505 "//webrtc/examples:AppRTCMobile_javalib", | 504 "//webrtc/examples:AppRTCMobile_javalib", |
| 506 "//webrtc/sdk/android:libjingle_peerconnection_java", | 505 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 507 ] | 506 ] |
| 508 } | 507 } |
| 509 } | 508 } |
| 510 } | 509 } |
| OLD | NEW |