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

Side by Side Diff: gyp/freetype.gyp

Issue 1919873003: Make clang the default Android compiler. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 | « gyp/common_conditions.gypi ('k') | gyp/lua.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Target for building freetype. 5 # Target for building freetype.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'freetype', 9 'target_name': 'freetype',
10 'type': 'none', 10 'type': 'none',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'cflags': [ 95 'cflags': [
96 '-W', 96 '-W',
97 '-Wall', 97 '-Wall',
98 '-fPIC', 98 '-fPIC',
99 '-DPIC', 99 '-DPIC',
100 '-DDARWIN_NO_CARBON', 100 '-DDARWIN_NO_CARBON',
101 '-DFT2_BUILD_LIBRARY', 101 '-DFT2_BUILD_LIBRARY',
102 '-O2', 102 '-O2',
103 ], 103 ],
104 }], 104 }],
105 [ 'skia_clang_build == 1', { 105 [ 'skia_clang_build == 1', {
mtklein 2016/04/25 18:20:20 These don't really need to be Clang-specific now,
106 'cflags':[ 106 'cflags':[
107 '-Wno-error', 107 '-w',
108 ], 108 ],
109 }], 109 }],
110 ], 110 ],
111 }, 111 },
112 ], 112 ],
113 } 113 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | gyp/lua.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698