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

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

Issue 2365383004: Moved Gn target rtc_event_log to one directory above (Closed)
Patch Set: Created 4 years, 2 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/test/fuzzers/BUILD.gn ('k') | webrtc/video/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) 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "event_log_visualizer/plot_python.cc", 157 "event_log_visualizer/plot_python.cc",
158 "event_log_visualizer/plot_python.h", 158 "event_log_visualizer/plot_python.h",
159 ] 159 ]
160 if (is_clang && !is_nacl) { 160 if (is_clang && !is_nacl) {
161 # Suppress warnings from the Chromium Clang plugin. 161 # Suppress warnings from the Chromium Clang plugin.
162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
164 } 164 }
165 defines = [ "ENABLE_RTC_EVENT_LOG" ] 165 defines = [ "ENABLE_RTC_EVENT_LOG" ]
166 deps = [ 166 deps = [
167 "../:rtc_event_log",
168 "../:rtc_event_log_parser", 167 "../:rtc_event_log_parser",
168 "../call:rtc_event_log",
169 "../modules/congestion_controller:congestion_controller", 169 "../modules/congestion_controller:congestion_controller",
170 "../modules/rtp_rtcp:rtp_rtcp", 170 "../modules/rtp_rtcp:rtp_rtcp",
171 "../system_wrappers:system_wrappers_default", 171 "../system_wrappers:system_wrappers_default",
172 "//build/config/sanitizers:deps", 172 "//build/config/sanitizers:deps",
173 ] 173 ]
174 public_deps = [ 174 public_deps = [
175 ":chart_proto", 175 ":chart_proto",
176 "../:rtc_event_log_parser", 176 "../:rtc_event_log_parser",
177 ] 177 ]
178 } 178 }
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ] 280 ]
281 outputs = [ 281 outputs = [
282 "$root_build_dir/{{source_file_part}}", 282 "$root_build_dir/{{source_file_part}}",
283 ] 283 ]
284 deps = [ 284 deps = [
285 "..:rtc_event_log_proto", 285 "..:rtc_event_log_proto",
286 ] 286 ]
287 } 287 }
288 } 288 }
289 } 289 }
OLDNEW
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698