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

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2947273002: Fix the binary size regression on Chromium Windows. (Closed)
Patch Set: Change to rtc_source_set to rtc_static_library to break the dependency from chromium.dll to opus. Created 3 years, 6 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/pc/BUILD.gn » ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 43 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
44 } 44 }
45 45
46 deps = [ 46 deps = [
47 "..:webrtc_common", 47 "..:webrtc_common",
48 "../base:rtc_base", 48 "../base:rtc_base",
49 "../base:rtc_base_approved", 49 "../base:rtc_base_approved",
50 ] 50 ]
51 } 51 }
52 52
53 rtc_source_set("rtc_media_base") { 53 rtc_static_library("rtc_media_base") {
54 # TODO(kjellander): Remove (bugs.webrtc.org/6828) 54 # TODO(kjellander): Remove (bugs.webrtc.org/6828)
55 # Enabling GN check triggers cyclic dependency error: 55 # Enabling GN check triggers cyclic dependency error:
56 # //webrtc/media:rtc_media_base -> 56 # //webrtc/media:rtc_media_base ->
57 # //webrtc/pc:rtc_pc_base -> 57 # //webrtc/pc:rtc_pc_base ->
58 # //webrtc/media:rtc_data -> 58 # //webrtc/media:rtc_data ->
59 # //webrtc/media:rtc_media_base 59 # //webrtc/media:rtc_media_base
60 check_includes = false 60 check_includes = false
61 defines = [] 61 defines = []
62 libs = [] 62 libs = []
63 deps = [] 63 deps = []
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 "../modules/video_coding:video_coding_utility", 511 "../modules/video_coding:video_coding_utility",
512 "../modules/video_coding:webrtc_vp8", 512 "../modules/video_coding:webrtc_vp8",
513 "../p2p:p2p_test_utils", 513 "../p2p:p2p_test_utils",
514 "../system_wrappers:metrics_default", 514 "../system_wrappers:metrics_default",
515 "../test:audio_codec_mocks", 515 "../test:audio_codec_mocks",
516 "../test:test_support", 516 "../test:test_support",
517 "../voice_engine:voice_engine", 517 "../voice_engine:voice_engine",
518 ] 518 ]
519 } 519 }
520 } 520 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/pc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698