| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 ] | 238 ] |
| 239 | 239 |
| 240 if (!build_with_chromium && is_clang) { | 240 if (!build_with_chromium && is_clang) { |
| 241 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 241 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 242 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 242 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 243 } | 243 } |
| 244 | 244 |
| 245 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 245 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 246 deps = [ | 246 deps = [ |
| 247 ":event_log_visualizer_utils", | 247 ":event_log_visualizer_utils", |
| 248 "../call:call", |
| 248 "../rtc_base:rtc_base_approved", | 249 "../rtc_base:rtc_base_approved", |
| 249 "../test:field_trial", | 250 "../test:field_trial", |
| 250 "../test:test_support", | 251 "../test:test_support", |
| 251 ] | 252 ] |
| 252 } | 253 } |
| 253 } | 254 } |
| 254 | 255 |
| 255 rtc_executable("activity_metric") { | 256 rtc_executable("activity_metric") { |
| 256 testonly = true | 257 testonly = true |
| 257 sources = [ | 258 sources = [ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 ] | 342 ] |
| 342 outputs = [ | 343 outputs = [ |
| 343 "$root_build_dir/{{source_file_part}}", | 344 "$root_build_dir/{{source_file_part}}", |
| 344 ] | 345 ] |
| 345 deps = [ | 346 deps = [ |
| 346 "../logging:rtc_event_log_proto", | 347 "../logging:rtc_event_log_proto", |
| 347 ] | 348 ] |
| 348 } | 349 } |
| 349 } | 350 } |
| 350 } | 351 } |
| OLD | NEW |