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

Side by Side Diff: webrtc/BUILD.gn

Issue 1187573004: iOS HW H264 support. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Move unittest file. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 22 matching lines...) Expand all
33 } 33 }
34 if (is_posix) { 34 if (is_posix) {
35 defines += [ "WEBRTC_POSIX" ] 35 defines += [ "WEBRTC_POSIX" ]
36 } 36 }
37 if (is_ios) { 37 if (is_ios) {
38 defines += [ 38 defines += [
39 "WEBRTC_MAC", 39 "WEBRTC_MAC",
40 "WEBRTC_IOS", 40 "WEBRTC_IOS",
41 ] 41 ]
42 } 42 }
43 if (is_ios && rtc_use_objc_h264) {
44 defines += [ "WEBRTC_OBJC_H264" ]
45 }
43 if (is_linux) { 46 if (is_linux) {
44 defines += [ "WEBRTC_LINUX" ] 47 defines += [ "WEBRTC_LINUX" ]
45 } 48 }
46 if (is_mac) { 49 if (is_mac) {
47 defines += [ "WEBRTC_MAC" ] 50 defines += [ "WEBRTC_MAC" ]
48 } 51 }
49 if (is_win) { 52 if (is_win) {
50 defines += [ "WEBRTC_WIN" ] 53 defines += [ "WEBRTC_WIN" ]
51 } 54 }
52 if (is_android) { 55 if (is_android) {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 233
231 configs += [ ":common_config" ] 234 configs += [ ":common_config" ]
232 public_configs = [ ":common_inherited_config" ] 235 public_configs = [ ":common_inherited_config" ]
233 } 236 }
234 237
235 source_set("gtest_prod") { 238 source_set("gtest_prod") {
236 sources = [ 239 sources = [
237 "test/testsupport/gtest_prod_util.h", 240 "test/testsupport/gtest_prod_util.h",
238 ] 241 ]
239 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698