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

Side by Side Diff: third_party/boringssl/boringssl_configurations.gypi

Issue 2354623003: Pull boringssl generated source from boringssl_gen (Closed)
Patch Set: . 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 unified diff | Download patch
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_dart.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file.
4
5 # This file is included to modify the configurations to build third-party
6 # code from BoringSSL.
7 {
8 'target_defaults': {
9 'conditions': [
10 ['OS == "linux" or OS == "android"', {
11 'cflags_c': [
12 '-std=c99',
13 ],
14 'defines': [
15 '_XOPEN_SOURCE=700',
16 ],
17 }],
18 ],
19 # Removes these flags from the list cflags.
20 'cflags!': [
21 '-ansi',
22 # Not supported for C, only for C++.
23 '-Wnon-virtual-dtor',
24 '-Wno-conversion-null',
25 '-fno-rtti',
26 '-fvisibility-inlines-hidden',
27 '-Woverloaded-virtual',
28 ],
29 },
30 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_dart.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698