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

Unified Diff: dl/BUILD.gn

Issue 2171553002: Convert GN source_set to static_library. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/deps/third_party/openmax.git@master
Patch Set: . Created 4 years, 5 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 | « OWNERS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dl/BUILD.gn
diff --git a/dl/BUILD.gn b/dl/BUILD.gn
index c5b6d36ac7bc2228aaa67206f172aa6dbc1b4373..76c3a3f329e65fb368a86117d7f4f3247b0533b0 100644
--- a/dl/BUILD.gn
+++ b/dl/BUILD.gn
@@ -38,7 +38,7 @@ config("dl_config") {
}
# 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 @@ if (current_cpu == "arm") {
# 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 @@ if (current_cpu == "arm") {
# 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 = [ ":*" ]
« no previous file with comments | « OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698