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

Side by Side Diff: webrtc/BUILD.gn

Issue 2986893002: Piggybacking simulcast id and ALR experiment id into video content type extension. (Closed)
Patch Set: Implement Sprang@ comments Created 3 years, 3 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
« no previous file with comments | « no previous file | webrtc/api/BUILD.gn » ('j') | webrtc/api/video/video_content_type.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 # webrtc_common 353 # webrtc_common
354 check_includes = false 354 check_includes = false
355 sources = [ 355 sources = [
356 "common_types.cc", 356 "common_types.cc",
357 "common_types.h", 357 "common_types.h",
358 "config.cc", 358 "config.cc",
359 "config.h", 359 "config.h",
360 "typedefs.h", 360 "typedefs.h",
361 ] 361 ]
362 362
363 # This is needed here because common_types.cc uses VideoContentType, which
364 # needs .cc file to be compiled. This is public to allow include of
365 # video_content_type.h.
366 public_deps = [
367 "api:video_content_type_api",
368 ]
369
363 if (!build_with_chromium && is_clang) { 370 if (!build_with_chromium && is_clang) {
364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 371 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 372 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
366 } 373 }
367 } 374 }
368 375
369 if (use_libfuzzer || use_drfuzz || use_afl) { 376 if (use_libfuzzer || use_drfuzz || use_afl) {
370 # This target is only here for gn to discover fuzzer build targets under 377 # This target is only here for gn to discover fuzzer build targets under
371 # webrtc/test/fuzzers/. 378 # webrtc/test/fuzzers/.
372 group("webrtc_fuzzers_dummy") { 379 group("webrtc_fuzzers_dummy") {
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 ] 550 ]
544 551
545 deps = [ 552 deps = [
546 "examples:AppRTCMobile_javalib", 553 "examples:AppRTCMobile_javalib",
547 "sdk/android:libjingle_peerconnection_java", 554 "sdk/android:libjingle_peerconnection_java",
548 "//base:base_java_test_support", 555 "//base:base_java_test_support",
549 ] 556 ]
550 } 557 }
551 } 558 }
552 } 559 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/BUILD.gn » ('j') | webrtc/api/video/video_content_type.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698