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

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

Issue 2626163004: GN: Refactor so that WebRTC compiles with rtc_enable_protobuf=false. (Closed)
Patch Set: Created 3 years, 11 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 | « webrtc/modules/audio_processing/BUILD.gn ('k') | no next file » | 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 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 12 matching lines...) Expand all
23 if (rtc_include_internal_audio_device) { 23 if (rtc_include_internal_audio_device) {
24 public_deps += [ ":force_mic_volume_max" ] 24 public_deps += [ ":force_mic_volume_max" ]
25 } 25 }
26 if (rtc_enable_protobuf) { 26 if (rtc_enable_protobuf) {
27 public_deps += [ ":chart_proto" ] 27 public_deps += [ ":chart_proto" ]
28 } 28 }
29 29
30 if (rtc_include_tests) { 30 if (rtc_include_tests) {
31 public_deps += [ 31 public_deps += [
32 ":activity_metric", 32 ":activity_metric",
33 ":rtp_analyzer",
34 ":tools_unittests", 33 ":tools_unittests",
35 ] 34 ]
36 if (rtc_enable_protobuf) { 35 if (rtc_enable_protobuf) {
37 public_deps += [ ":event_log_visualizer" ] 36 public_deps += [
37 ":event_log_visualizer",
38 ":rtp_analyzer",
39 ]
38 } 40 }
39 } 41 }
40 } 42 }
41 43
42 rtc_static_library("command_line_parser") { 44 rtc_static_library("command_line_parser") {
43 sources = [ 45 sources = [
44 "simple_command_line_parser.cc", 46 "simple_command_line_parser.cc",
45 "simple_command_line_parser.h", 47 "simple_command_line_parser.h",
46 ] 48 ]
47 deps = [ 49 deps = [
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 ] 323 ]
322 outputs = [ 324 outputs = [
323 "$root_build_dir/{{source_file_part}}", 325 "$root_build_dir/{{source_file_part}}",
324 ] 326 ]
325 deps = [ 327 deps = [
326 "../logging:rtc_event_log_proto", 328 "../logging:rtc_event_log_proto",
327 ] 329 ]
328 } 330 }
329 } 331 }
330 } 332 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698