Chromium Code Reviews| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 } |
| OLD | NEW |