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

Side by Side Diff: rtc_tools/BUILD.gn

Issue 3011413002: Remove remaining mentions of gflags (Closed)
Patch Set: Replace `!build_with_chromium` with `rtc_include_tests` Created 3 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 | « DEPS ('k') | test/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("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « DEPS ('k') | test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698