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

Side by Side Diff: webrtc/tools/BUILD.gn

Issue 2039173002: GN: Exclude frame_analyzer and rgba_to_i420_converter from Chromium builds. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | 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("//testing/test.gni") 9 import("//testing/test.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
11 11
12 source_set("tools") { 12 source_set("tools") {
13 deps = [ 13 deps = [
14 ":command_line_parser", 14 ":command_line_parser",
15 ":frame_analyzer",
16 ":rgba_to_i420_converter",
17 ] 15 ]
16
17 if (!build_with_chromium) {
18 # TODO(kjellander): Enable these when webrtc:5970 is fixed.
19 deps += [
20 ":frame_analyzer",
21 ":rgba_to_i420_converter",
22 ]
23 }
18 } 24 }
19 25
20 source_set("command_line_parser") { 26 source_set("command_line_parser") {
21 sources = [ 27 sources = [
22 "simple_command_line_parser.cc", 28 "simple_command_line_parser.cc",
23 "simple_command_line_parser.h", 29 "simple_command_line_parser.h",
24 ] 30 ]
25 deps = [ 31 deps = [
26 "../base:gtest_prod", 32 "../base:gtest_prod",
27 ] 33 ]
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 ":video_quality_analysis", 274 ":video_quality_analysis",
269 "../test:test_support_main", 275 "../test:test_support_main",
270 "//testing/gtest", 276 "//testing/gtest",
271 ] 277 ]
272 278
273 if (is_android) { 279 if (is_android) {
274 deps += [ "//testing/android/native_test:native_test_support" ] 280 deps += [ "//testing/android/native_test:native_test_support" ]
275 } 281 }
276 } 282 }
277 } 283 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698