Chromium Code Reviews| 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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 187 | 187 |
| 188 if (is_clang && !is_nacl) { | 188 if (is_clang && !is_nacl) { |
| 189 # Suppress warnings from the Chromium Clang plugin. | 189 # Suppress warnings from the Chromium Clang plugin. |
| 190 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 190 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 191 configs -= [ "//build/config/clang:find_bad_constructs" ] | 191 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 192 } | 192 } |
| 193 | 193 |
| 194 defines = [ "ENABLE_RTC_EVENT_LOG" ] | 194 defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 195 deps = [ | 195 deps = [ |
| 196 "../:rtc_event_log_parser", | 196 "../:rtc_event_log_parser", |
| 197 "../modules/congestion_controller:congestion_controller", | |
| 197 "../modules/rtp_rtcp:rtp_rtcp", | 198 "../modules/rtp_rtcp:rtp_rtcp", |
| 198 "../system_wrappers:system_wrappers_default", | 199 "../system_wrappers:system_wrappers_default", |
| 200 | |
| 201 #"../test:field_trial", | |
|
phoglund
2016/07/28 10:21:41
Nit: remove
stefan-webrtc
2016/07/28 13:47:23
Needed, thanks though.
| |
| 199 "//third_party/gflags", | 202 "//third_party/gflags", |
| 200 ] | 203 ] |
| 201 } | 204 } |
| 202 } | 205 } |
| 203 | 206 |
| 204 executable("agc_harness") { | 207 executable("agc_harness") { |
| 205 testonly = true | 208 testonly = true |
| 206 sources = [ | 209 sources = [ |
| 207 "agc/agc_harness.cc", | 210 "agc/agc_harness.cc", |
| 208 ] | 211 ] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 320 ] | 323 ] |
| 321 outputs = [ | 324 outputs = [ |
| 322 "$root_build_dir/{{source_file_part}}", | 325 "$root_build_dir/{{source_file_part}}", |
| 323 ] | 326 ] |
| 324 deps = [ | 327 deps = [ |
| 325 "..:rtc_event_log_proto", | 328 "..:rtc_event_log_proto", |
| 326 ] | 329 ] |
| 327 } | 330 } |
| 328 } | 331 } |
| 329 } | 332 } |
| OLD | NEW |