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

Side by Side Diff: third_party/boringssl/boringssl.gyp

Issue 1537473002: [third-party] Netty fork of Tomcat Native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed open source license review comments Created 4 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'includes': [ 6 'includes': [
7 'boringssl.gypi', 7 'boringssl.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 }], 143 }],
144 ] 144 ]
145 }], 145 }],
146 ['msan == 1 or (target_arch != "arm" and target_arch != "ia32" and targe t_arch != "x64" and target_arch != "arm64")', { 146 ['msan == 1 or (target_arch != "arm" and target_arch != "ia32" and targe t_arch != "x64" and target_arch != "arm64")', {
147 'direct_dependent_settings': { 147 'direct_dependent_settings': {
148 'defines': [ 'OPENSSL_NO_ASM' ], 148 'defines': [ 'OPENSSL_NO_ASM' ],
149 }, 149 },
150 }], 150 }],
151 ], 151 ],
152 }, 152 },
153 { # Builds decrepit BoringSSL sources.
154 'target_name': 'boringssl-decrepit',
155 'type': '<(component)',
156 'includes': [
157 'boringssl.gypi',
158 ],
159 'sources': [
160 '<@(boringssl_decrepit_sources)',
161 ],
162 'include_dirs': [
163 'src/include',
164 ],
165 },
153 ], 166 ],
154 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698