OLD | NEW |
---|---|
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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', { |
106 'cflags':[ | 106 'cflags':[ |
107 '-Wno-error', | 107 '-Wno-error', |
108 '-Wno-self-assign', | |
mtklein
2016/04/25 17:44:17
Probably better to add blanket '-w' to both these
| |
108 ], | 109 ], |
109 }], | 110 }], |
110 ], | 111 ], |
111 }, | 112 }, |
112 ], | 113 ], |
113 } | 114 } |
OLD | NEW |