OLD | NEW |
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("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 "//build/config:exe_and_shlib_deps", | 227 "//build/config:exe_and_shlib_deps", |
228 ] | 228 ] |
229 public_deps = [ | 229 public_deps = [ |
230 ":chart_proto", | 230 ":chart_proto", |
231 "../logging:rtc_event_log_parser", | 231 "../logging:rtc_event_log_parser", |
232 ] | 232 ] |
233 } | 233 } |
234 } | 234 } |
235 } | 235 } |
236 | 236 |
237 # Exclude tools depending on gflags since that's not available in Chromium. | |
238 if (rtc_include_tests) { | 237 if (rtc_include_tests) { |
239 if (rtc_enable_protobuf) { | 238 if (rtc_enable_protobuf) { |
240 rtc_executable("event_log_visualizer") { | 239 rtc_executable("event_log_visualizer") { |
241 testonly = true | 240 testonly = true |
242 sources = [ | 241 sources = [ |
243 "event_log_visualizer/main.cc", | 242 "event_log_visualizer/main.cc", |
244 ] | 243 ] |
245 | 244 |
246 if (!build_with_chromium && is_clang) { | 245 if (!build_with_chromium && is_clang) { |
247 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 246 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 ] | 348 ] |
350 outputs = [ | 349 outputs = [ |
351 "$root_build_dir/{{source_file_part}}", | 350 "$root_build_dir/{{source_file_part}}", |
352 ] | 351 ] |
353 deps = [ | 352 deps = [ |
354 "../logging:rtc_event_log_proto", | 353 "../logging:rtc_event_log_proto", |
355 ] | 354 ] |
356 } | 355 } |
357 } | 356 } |
358 } | 357 } |
OLD | NEW |