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

Side by Side Diff: third_party/netty-tcnative/BUILD.gn

Issue 1943583002: GN: forward_variables_from shouldn't clobber vars. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Builds the Netty fork of Tomcat Native. See http://netty.io/wiki/forked-tomcat -native.html 5 # Builds the Netty fork of Tomcat Native. See http://netty.io/wiki/forked-tomcat -native.html
6 6
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 # Builds the native part of netty-tcnative library. 10 # Builds the native part of netty-tcnative library.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "src/java/src/org/apache/tomcat/jni/SSLContext.java", 91 "src/java/src/org/apache/tomcat/jni/SSLContext.java",
92 "src/java/src/org/apache/tomcat/jni/SSLExt.java", 92 "src/java/src/org/apache/tomcat/jni/SSLExt.java",
93 "src/java/src/org/apache/tomcat/jni/SSL.java", 93 "src/java/src/org/apache/tomcat/jni/SSL.java",
94 "src/java/src/org/apache/tomcat/jni/SSLSocket.java", 94 "src/java/src/org/apache/tomcat/jni/SSLSocket.java",
95 "src/java/src/org/apache/tomcat/jni/Status.java", 95 "src/java/src/org/apache/tomcat/jni/Status.java",
96 "src/java/src/org/apache/tomcat/jni/Stdlib.java", 96 "src/java/src/org/apache/tomcat/jni/Stdlib.java",
97 "src/java/src/org/apache/tomcat/jni/Thread.java", 97 "src/java/src/org/apache/tomcat/jni/Thread.java",
98 "src/java/src/org/apache/tomcat/jni/Time.java", 98 "src/java/src/org/apache/tomcat/jni/Time.java",
99 "src/java/src/org/apache/tomcat/jni/User.java", 99 "src/java/src/org/apache/tomcat/jni/User.java",
100 ] 100 ]
101 run_findbugs = false 101 run_findbugs_override = false
102 deps = [ 102 deps = [
103 "//base:base_java", 103 "//base:base_java",
104 ] 104 ]
105 } 105 }
106 106
107 # Builds both the Java and native parts of netty-tcnative library. 107 # Builds both the Java and native parts of netty-tcnative library.
108 group("netty-tcnative_all") { 108 group("netty-tcnative_all") {
109 deps = [ 109 deps = [
110 ":netty-tcnative", 110 ":netty-tcnative",
111 ":netty-tcnative-so", 111 ":netty-tcnative-so",
112 ] 112 ]
113 public_deps = [ 113 public_deps = [
114 ":netty-tcnative-so", 114 ":netty-tcnative-so",
115 ] 115 ]
116 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698