| 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("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 if (!build_with_chromium && is_clang) { | 203 if (!build_with_chromium && is_clang) { |
| 204 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 204 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 205 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 205 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 206 } | 206 } |
| 207 | 207 |
| 208 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 208 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 209 deps = [ | 209 deps = [ |
| 210 ":event_log_visualizer_utils", | 210 ":event_log_visualizer_utils", |
| 211 "../test:field_trial", |
| 211 "//third_party/gflags", | 212 "//third_party/gflags", |
| 212 ] | 213 ] |
| 213 } | 214 } |
| 214 } | 215 } |
| 215 | 216 |
| 216 rtc_executable("activity_metric") { | 217 rtc_executable("activity_metric") { |
| 217 testonly = true | 218 testonly = true |
| 218 sources = [ | 219 sources = [ |
| 219 "agc/activity_metric.cc", | 220 "agc/activity_metric.cc", |
| 220 ] | 221 ] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 ] | 291 ] |
| 291 outputs = [ | 292 outputs = [ |
| 292 "$root_build_dir/{{source_file_part}}", | 293 "$root_build_dir/{{source_file_part}}", |
| 293 ] | 294 ] |
| 294 deps = [ | 295 deps = [ |
| 295 "../logging:rtc_event_log_proto", | 296 "../logging:rtc_event_log_proto", |
| 296 ] | 297 ] |
| 297 } | 298 } |
| 298 } | 299 } |
| 299 } | 300 } |
| OLD | NEW |