Convert GN source_set to static_library.
This improves the build time somewhat.
BUG=http://crbug.com/627637
R=rtoy@google.com
Review URL: https://codereview.webrtc.org/2171553002 .
diff --git a/OWNERS b/OWNERS
index 34fc598..5e3e77e 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,3 +1,2 @@
-ajm@google.com
kma@google.com
rtoy@google.com
diff --git a/dl/BUILD.gn b/dl/BUILD.gn
index c5b6d36..76c3a3f 100644
--- a/dl/BUILD.gn
+++ b/dl/BUILD.gn
@@ -38,7 +38,7 @@
}
# GYP: third_party/openmax_dl/dl/dl.gyp:openmax_dl
-source_set("dl") {
+static_library("dl") {
public_configs = [ ":dl_config" ]
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
@@ -176,7 +176,7 @@
# GYP: third_party/openmax_dl/dl/dl.gyp:openmax_dl_armv7
# Non-NEON implementation of FFT. This library is NOT
# standalone. Applications must link with openmax_dl.
- source_set("openmax_dl_armv7") {
+ static_library("openmax_dl_armv7") {
configs += [ ":dl_config" ]
visibility = [ ":*" ]
@@ -207,7 +207,7 @@
# GYP: third_party/openmax_dl/dl/dl.gyp:openmax_dl_neon
# NEON implementation of FFT. This library is NOT
# standalone. Applications must link with openmax_dl.
- source_set("openmax_dl_neon") {
+ static_library("openmax_dl_neon") {
configs += [ ":dl_config" ]
visibility = [ ":*" ]