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

Side by Side Diff: webrtc/BUILD.gn

Issue 1687703002: Refactored CL for moving the output to a separate thread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Minor update Created 4 years, 9 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/call/mock/mock_rtc_event_log.h » ('j') | webrtc/call/ringbuffer.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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 "call/rtc_event_log.proto", 253 "call/rtc_event_log.proto",
254 ] 254 ]
255 proto_out_dir = "webrtc/call" 255 proto_out_dir = "webrtc/call"
256 } 256 }
257 } 257 }
258 258
259 source_set("rtc_event_log") { 259 source_set("rtc_event_log") {
260 sources = [ 260 sources = [
261 "call/rtc_event_log.cc", 261 "call/rtc_event_log.cc",
262 "call/rtc_event_log.h", 262 "call/rtc_event_log.h",
263 "call/rtc_event_log_helper_thread.cc",
264 "call/rtc_event_log_helper_thread.h",
263 ] 265 ]
264 266
265 defines = [] 267 defines = []
266 configs += [ ":common_config" ] 268 configs += [ ":common_config" ]
267 public_configs = [ ":common_inherited_config" ] 269 public_configs = [ ":common_inherited_config" ]
268 270
269 deps = [ 271 deps = [
270 ":webrtc_common", 272 ":webrtc_common",
271 ] 273 ]
272 274
(...skipping 11 matching lines...) Expand all
284 if (use_libfuzzer || use_drfuzz) { 286 if (use_libfuzzer || use_drfuzz) {
285 # This target is only here for gn to discover fuzzer build targets under 287 # This target is only here for gn to discover fuzzer build targets under
286 # webrtc/test/fuzzers/. 288 # webrtc/test/fuzzers/.
287 group("webrtc_fuzzers_dummy") { 289 group("webrtc_fuzzers_dummy") {
288 testonly = true 290 testonly = true
289 deps = [ 291 deps = [
290 "test/fuzzers:webrtc_fuzzer_main", 292 "test/fuzzers:webrtc_fuzzer_main",
291 ] 293 ]
292 } 294 }
293 } 295 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/call/mock/mock_rtc_event_log.h » ('j') | webrtc/call/ringbuffer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698