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

Unified Diff: webrtc/tools/BUILD.gn

Issue 2361623004: GN: Change rtc_source_set targets --> rtc_static_library (Closed)
Patch Set: Restored accidental rebase errors. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index dc4fce255c51a7cbfd05757d37419ccd3e0089d2..7d9cd40e01f3dca179e31d5b7ca1aef0fab390d2 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -9,7 +9,7 @@
import("//third_party/protobuf/proto_library.gni")
import("../build/webrtc.gni")
-rtc_source_set("tools") {
+group("tools") {
deps = [
":command_line_parser",
]
@@ -23,7 +23,7 @@ rtc_source_set("tools") {
}
}
-rtc_source_set("command_line_parser") {
+rtc_static_library("command_line_parser") {
sources = [
"simple_command_line_parser.cc",
"simple_command_line_parser.h",
@@ -33,7 +33,7 @@ rtc_source_set("command_line_parser") {
]
}
-rtc_source_set("video_quality_analysis") {
+rtc_static_library("video_quality_analysis") {
sources = [
"frame_analyzer/video_quality_analysis.cc",
"frame_analyzer/video_quality_analysis.h",
@@ -85,7 +85,7 @@ rtc_executable("rgba_to_i420_converter") {
]
}
-rtc_source_set("frame_editing_lib") {
+rtc_static_library("frame_editing_lib") {
sources = [
"frame_editing/frame_editing_lib.cc",
"frame_editing/frame_editing_lib.h",
@@ -146,7 +146,7 @@ if (rtc_enable_protobuf) {
proto_out_dir = "webrtc/tools/event_log_visualizer"
}
- rtc_source_set("event_log_visualizer_utils") {
+ rtc_static_library("event_log_visualizer_utils") {
sources = [
"event_log_visualizer/analyzer.cc",
"event_log_visualizer/analyzer.h",
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698