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

Side by Side Diff: webrtc/BUILD.gn

Issue 3004723002: Move RtpExtension to api/ directory and config.h/.cc to call/. (Closed)
Patch Set: Fix nit. 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/DEPS » ('j') | no next file with comments »
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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 # TODO(mbonadei): Remove (bugs.webrtc.org/7745) 340 # TODO(mbonadei): Remove (bugs.webrtc.org/7745)
341 # Enabling GN check triggers cyclic dependency error: 341 # Enabling GN check triggers cyclic dependency error:
342 # :webrtc_common -> 342 # :webrtc_common ->
343 # api:video_frame_api -> 343 # api:video_frame_api ->
344 # system_wrappers:system_wrappers -> 344 # system_wrappers:system_wrappers ->
345 # webrtc_common 345 # webrtc_common
346 check_includes = false 346 check_includes = false
347 sources = [ 347 sources = [
348 "common_types.cc", 348 "common_types.cc",
349 "common_types.h", 349 "common_types.h",
350 "config.cc",
351 "config.h", 350 "config.h",
352 "typedefs.h", 351 "typedefs.h",
353 ] 352 ]
354 353
355 if (!build_with_chromium && is_clang) { 354 if (!build_with_chromium && is_clang) {
356 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 355 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
357 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 356 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
358 } 357 }
359 } 358 }
360 359
(...skipping 16 matching lines...) Expand all
377 if (is_clang) { 376 if (is_clang) {
378 cflags = [ 377 cflags = [
379 "-Wno-sign-compare", 378 "-Wno-sign-compare",
380 "-Wno-unused-const-variable", 379 "-Wno-unused-const-variable",
381 ] 380 ]
382 } 381 }
383 } 382 }
384 383
385 rtc_test("rtc_unittests") { 384 rtc_test("rtc_unittests") {
386 testonly = true 385 testonly = true
387 sources = [
388 "config_unittest.cc",
389 ]
390 386
391 deps = [ 387 deps = [
392 ":webrtc_common", 388 ":webrtc_common",
393 "api:rtc_api_unittests", 389 "api:rtc_api_unittests",
394 "api/audio_codecs/test:audio_codecs_api_unittests", 390 "api/audio_codecs/test:audio_codecs_api_unittests",
395 "p2p:libstunprober_unittests", 391 "p2p:libstunprober_unittests",
396 "p2p:rtc_p2p_unittests", 392 "p2p:rtc_p2p_unittests",
397 "rtc_base:rtc_base_approved_unittests", 393 "rtc_base:rtc_base_approved_unittests",
398 "rtc_base:rtc_base_tests_main", 394 "rtc_base:rtc_base_tests_main",
399 "rtc_base:rtc_base_tests_utils", 395 "rtc_base:rtc_base_tests_utils",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 ] 531 ]
536 532
537 deps = [ 533 deps = [
538 "examples:AppRTCMobile_javalib", 534 "examples:AppRTCMobile_javalib",
539 "sdk/android:libjingle_peerconnection_java", 535 "sdk/android:libjingle_peerconnection_java",
540 "//base:base_java_test_support", 536 "//base:base_java_test_support",
541 ] 537 ]
542 } 538 }
543 } 539 }
544 } 540 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698